Skip to content

Commit 0948452

Browse files
committed
Markdown: fix rendering when source has prepending whitespace
Fixed an issue with pat-markdown where rendering was not like expected when source has prepending whitespace (#697) Fixes #697
1 parent e55ed34 commit 0948452

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Features
1515
- Fixed an issue with pat-scroll when placed on an item without a href
1616
- Fixed an issue with pat-autofocus that would set focus on hidden items
1717
- Fixed an issue with pat-inject scroll that would scroll too much (#694)
18+
- Fixed an issue with pat-markdown where rendering was not like expected when source has prepending whitespace (#697)
1819
1920
Fixes
2021
~~~~~

src/pat/markdown/markdown.js

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ define([
2828
render: function(text) {
2929
var $rendering = $("<div/>"),
3030
converter = new Showdown.Converter({tables: true, extensions: ['prettify']});
31+
text = text.trim();
3132
$rendering.html(converter.makeHtml(text));
3233
return $rendering;
3334
},

src/pat/markdown/tests.js

+7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ define(["pat-markdown"], function(Pattern) {
5454
var $rendering = Pattern.prototype.render("*This is markdown*");
5555
expect($rendering.html()).toBe("<p><em>This is markdown</em></p>");
5656
});
57+
58+
it("removes whitespace from start and end of text", function() {
59+
// If text is not removed, the rendering breaks and ouputs this instead:
60+
// '<pre class="pat-syntax-highlight" tabindex="0"><code data-inner="1"> *This is markdown* </code></pre>'
61+
var $rendering = Pattern.prototype.render(" *This is markdown* ");
62+
expect($rendering.html()).toBe("<p><em>This is markdown</em></p>");
63+
});
5764
});
5865

5966
describe("Session extraction", function() {

0 commit comments

Comments
 (0)