File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Features
15
15
- Fixed an issue with pat-scroll when placed on an item without a href
16
16
- Fixed an issue with pat-autofocus that would set focus on hidden items
17
17
- 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)
18
19
19
20
Fixes
20
21
~~~~~
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ define([
28
28
render : function ( text ) {
29
29
var $rendering = $ ( "<div/>" ) ,
30
30
converter = new Showdown . Converter ( { tables : true , extensions : [ 'prettify' ] } ) ;
31
+ text = text . trim ( ) ;
31
32
$rendering . html ( converter . makeHtml ( text ) ) ;
32
33
return $rendering ;
33
34
} ,
Original file line number Diff line number Diff line change @@ -54,6 +54,13 @@ define(["pat-markdown"], function(Pattern) {
54
54
var $rendering = Pattern . prototype . render ( "*This is markdown*" ) ;
55
55
expect ( $rendering . html ( ) ) . toBe ( "<p><em>This is markdown</em></p>" ) ;
56
56
} ) ;
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
+ } ) ;
57
64
} ) ;
58
65
59
66
describe ( "Session extraction" , function ( ) {
You can’t perform that action at this time.
0 commit comments