Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: yaronn/blessed-contrib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2fdfbe2bd93f4ed24cb6b9074c5709793b3ddb97
Choose a base ref
..
head repository: yaronn/blessed-contrib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 875ce4a520e4607fb9e47d9e084509460779d834
Choose a head ref
Showing with 2,579 additions and 108 deletions.
  1. +1 −0 README.md
  2. +1 −1 lib/widget/markdown.js
  3. +2,574 −104 package-lock.json
  4. +3 −3 package.json
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ You should also [check WOPR](https://github.com/yaronn/wopr): a markup for creat
Yaron Naveh ([@YaronNaveh](http://twitter.com/YaronNaveh))
Chris ([@xcezzz](https://twitter.com/xcezzz))
Miguel Valadas ([@mvaladas](https://github.com/mvaladas))
Liran Tal ([@lirantal](https://github.com/lirantal))

**Demo ([full size](https://raw.githubusercontent.com/yaronn/blessed-contrib/master/docs/images/term3.gif)):**

2 changes: 1 addition & 1 deletion lib/widget/markdown.js
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ function Markdown(options) {
Markdown.prototype = Object.create(Box.prototype);

Markdown.prototype.setMarkdown = function(str) {
this.setContent(marked(str));
this.setContent(marked.parse(str));
};

Markdown.prototype.setOptions = function(style) {
Loading