1bb8815b17bd236f2e23a7c98ea3c7892bc1252f
[nit.git] / lib / markdown / markdown.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Markdown parsing.
16 module markdown
17
18 import template
19
20 # Parse a markdown string and split it in blocks.
21 #
22 # Blocks are then outputed by an `MarkdownEmitter`.
23 #
24 # Usage:
25 #
26 # var proc = new MarkdownProcessor
27 # var html = proc.process("**Hello World!**")
28 # assert html == "<p><strong>Hello World!</strong></p>\n"
29 #
30 # SEE: `String::md_to_html` for a shortcut.
31 class MarkdownProcessor
32
33 # `MarkdownEmitter` used for ouput.
34 var emitter: MarkdownEmitter is noinit, protected writable
35
36 # Work in extended mode (default).
37 #
38 # Behavior changes when using extended mode:
39 #
40 # * Lists and code blocks end a paragraph
41 #
42 # In normal markdown the following:
43 #
44 # ~~~md
45 # This is a paragraph
46 # * and this is not a list
47 # ~~~
48 #
49 # Will produce:
50 #
51 # ~~~html
52 # <p>This is a paragraph
53 # * and this is not a list</p>
54 # ~~~
55 #
56 # When using extended mode this changes to:
57 #
58 # ~~~html
59 # <p>This is a paragraph</p>
60 # <ul>
61 # <li>and this is not a list</li>
62 # </ul>
63 # ~~~
64 #
65 # * Fences code blocks
66 #
67 # If you don't want to indent your all your code with 4 spaces,
68 # you can wrap your code in ``` ``` ``` or `~~~`.
69 #
70 # Here's an example:
71 #
72 # ~~~md
73 # fun test do
74 # print "Hello World!"
75 # end
76 # ~~~
77 #
78 # * Code blocks meta
79 #
80 # If you want to use syntax highlighting tools, most of them need to know what kind
81 # of language they are highlighting.
82 # You can add an optional language identifier after the fence declaration to output
83 # it in the HTML render.
84 #
85 # ```nit
86 # import markdown
87 #
88 # print "# Hello World!".md_to_html
89 # ```
90 #
91 # Becomes
92 #
93 # ~~~html
94 # <pre class="nit"><code>import markdown
95 #
96 # print "Hello World!".md_to_html
97 # </code></pre>
98 # ~~~
99 #
100 # * Underscores (Emphasis)
101 #
102 # Underscores in the middle of a word like:
103 #
104 # ~~~md
105 # Con_cat_this
106 # ~~~
107 #
108 # normally produces this:
109 #
110 # ~~~html
111 # <p>Con<em>cat</em>this</p>
112 # ~~~
113 #
114 # With extended mode they don't result in emphasis.
115 #
116 # ~~~html
117 # <p>Con_cat_this</p>
118 # ~~~
119 #
120 # * Strikethrough
121 #
122 # Like in [GFM](https://help.github.com/articles/github-flavored-markdown),
123 # strikethrought span is marked with `~~`.
124 #
125 # ~~~md
126 # ~~Mistaken text.~~
127 # ~~~
128 #
129 # becomes
130 #
131 # ~~~html
132 # <del>Mistaken text.</del>
133 # ~~~
134 var ext_mode = true
135
136 init do self.emitter = new MarkdownEmitter(self)
137
138 # Process the mardown `input` string and return the processed output.
139 fun process(input: String): Writable do
140 # init processor
141 link_refs.clear
142 last_link_ref = null
143 current_line = null
144 current_block = null
145 # parse markdown
146 var parent = read_lines(input)
147 parent.remove_surrounding_empty_lines
148 recurse(parent, false)
149 # output processed text
150 return emitter.emit(parent.kind)
151 end
152
153 # Split `input` string into `MDLines` and create a parent `MDBlock` with it.
154 private fun read_lines(input: String): MDBlock do
155 var block = new MDBlock(new MDLocation(1, 1, 1, 1))
156 var value = new FlatBuffer
157 var i = 0
158
159 var line_pos = 0
160 var col_pos = 0
161
162 while i < input.length do
163 value.clear
164 var pos = 0
165 var eol = false
166 while not eol and i < input.length do
167 col_pos += 1
168 var c = input[i]
169 if c == '\n' then
170 eol = true
171 else if c == '\t' then
172 var np = pos + (4 - (pos & 3))
173 while pos < np do
174 value.add ' '
175 pos += 1
176 end
177 else
178 pos += 1
179 value.add c
180 end
181 i += 1
182 end
183 line_pos += 1
184
185 var loc = new MDLocation(line_pos, 1, line_pos, col_pos)
186 var line = new MDLine(loc, value.write_to_string)
187 var is_link_ref = check_link_ref(line)
188 # Skip link refs
189 if not is_link_ref then block.add_line line
190 col_pos = 0
191 end
192 return block
193 end
194
195 # Check if line is a block link definition.
196 # Return `true` if line contains a valid link ref and save it into `link_refs`.
197 private fun check_link_ref(line: MDLine): Bool do
198 var md = line.value
199 var is_link_ref = false
200 var id = new FlatBuffer
201 var link = new FlatBuffer
202 var comment = new FlatBuffer
203 var pos = -1
204 if not line.is_empty and line.leading < 4 and line.value[line.leading] == '[' then
205 pos = line.leading + 1
206 pos = md.read_until(id, pos, ']')
207 if not id.is_empty and pos + 2 < line.value.length then
208 if line.value[pos + 1] == ':' then
209 pos += 2
210 pos = md.skip_spaces(pos)
211 if line.value[pos] == '<' then
212 pos += 1
213 pos = md.read_until(link, pos, '>')
214 pos += 1
215 else
216 pos = md.read_until(link, pos, ' ', '\n')
217 end
218 if not link.is_empty then
219 pos = md.skip_spaces(pos)
220 if pos > 0 and pos < line.value.length then
221 var c = line.value[pos]
222 if c == '\"' or c == '\'' or c == '(' then
223 pos += 1
224 if c == '(' then
225 pos = md.read_until(comment, pos, ')')
226 else
227 pos = md.read_until(comment, pos, c)
228 end
229 if pos > 0 then is_link_ref = true
230 end
231 else
232 is_link_ref = true
233 end
234 end
235 end
236 end
237 end
238 if is_link_ref and not id.is_empty and not link.is_empty then
239 var lr = new LinkRef.with_title(link.write_to_string, comment.write_to_string)
240 add_link_ref(id.write_to_string, lr)
241 if comment.is_empty then last_link_ref = lr
242 return true
243 else
244 comment = new FlatBuffer
245 if not line.is_empty and last_link_ref != null then
246 pos = line.leading
247 var c = line.value[pos]
248 if c == '\"' or c == '\'' or c == '(' then
249 pos += 1
250 if c == '(' then
251 pos = md.read_until(comment, pos, ')')
252 else
253 pos = md.read_until(comment, pos, c)
254 end
255 end
256 if not comment.is_empty then last_link_ref.title = comment.write_to_string
257 end
258 if comment.is_empty then return false
259 return true
260 end
261 end
262
263 # Known link refs
264 # This list will be needed during output to expand links.
265 var link_refs: Map[String, LinkRef] = new HashMap[String, LinkRef]
266
267 # Last encountered link ref (for multiline definitions)
268 #
269 # Markdown allows link refs to be defined over two lines:
270 #
271 # ~~~md
272 # [id]: http://example.com/longish/path/to/resource/here
273 # "Optional Title Here"
274 # ~~~
275 #
276 private var last_link_ref: nullable LinkRef = null
277
278 # Add a link ref to the list
279 fun add_link_ref(key: String, ref: LinkRef) do link_refs[key.to_lower] = ref
280
281 # Recursively split a `block`.
282 #
283 # The block is splitted according to the type of lines it contains.
284 # Some blocks can be splited again recursively like lists.
285 # The `in_list` mode is used to recurse on list and build
286 # nested paragraphs or code blocks.
287 fun recurse(root: MDBlock, in_list: Bool) do
288 var old_mode = self.in_list
289 var old_root = self.current_block
290 self.in_list = in_list
291
292 var line = root.first_line
293 while line != null and line.is_empty do
294 line = line.next
295 if line == null then return
296 end
297
298 current_line = line
299 current_block = root
300 while current_line != null do
301 line_kind(current_line.as(not null)).process(self)
302 end
303 self.in_list = old_mode
304 self.current_block = old_root
305 end
306
307 # Currently processed line.
308 # Used when visiting blocks with `recurse`.
309 var current_line: nullable MDLine = null is writable
310
311 # Currently processed block.
312 # Used when visiting blocks with `recurse`.
313 var current_block: nullable MDBlock = null is writable
314
315 # Is the current recursion in list mode?
316 # Used when visiting blocks with `recurse`
317 private var in_list = false
318
319 # The type of line.
320 # see: `md_line_*`
321 fun line_kind(md: MDLine): Line do
322 var value = md.value
323 var leading = md.leading
324 var trailing = md.trailing
325 if md.is_empty then return new LineEmpty
326 if md.leading > 3 then return new LineCode
327 if value[leading] == '#' then return new LineHeadline
328 if value[leading] == '>' then return new LineBlockquote
329
330 if ext_mode then
331 if value.length - leading - trailing > 2 then
332 if value[leading] == '`' and md.count_chars_start('`') >= 3 then
333 return new LineFence
334 end
335 if value[leading] == '~' and md.count_chars_start('~') >= 3 then
336 return new LineFence
337 end
338 end
339 end
340
341 if value.length - leading - trailing > 2 and
342 (value[leading] == '*' or value[leading] == '-' or value[leading] == '_') then
343 if md.count_chars(value[leading]) >= 3 then
344 return new LineHR
345 end
346 end
347
348 if value.length - leading >= 2 and value[leading + 1] == ' ' then
349 var c = value[leading]
350 if c == '*' or c == '-' or c == '+' then return new LineUList
351 end
352
353 if value.length - leading >= 3 and value[leading].is_digit then
354 var i = leading + 1
355 while i < value.length and value[i].is_digit do i += 1
356 if i + 1 < value.length and value[i] == '.' and value[i + 1] == ' ' then
357 return new LineOList
358 end
359 end
360
361 if value[leading] == '<' and md.check_html then return new LineXML
362
363 var next = md.next
364 if next != null and not next.is_empty then
365 if next.count_chars('=') > 0 then
366 return new LineHeadline1
367 end
368 if next.count_chars('-') > 0 then
369 return new LineHeadline2
370 end
371 end
372 return new LineOther
373 end
374
375 # Get the token kind at `pos`.
376 fun token_at(text: Text, pos: Int): Token do
377 var c0: Char
378 var c1: Char
379 var c2: Char
380
381 if pos > 0 then
382 c0 = text[pos - 1]
383 else
384 c0 = ' '
385 end
386 var c = text[pos]
387
388 if pos + 1 < text.length then
389 c1 = text[pos + 1]
390 else
391 c1 = ' '
392 end
393 if pos + 2 < text.length then
394 c2 = text[pos + 2]
395 else
396 c2 = ' '
397 end
398
399 var loc = new MDLocation(
400 current_loc.line_start,
401 current_loc.column_start + pos,
402 current_loc.line_start,
403 current_loc.column_start + pos)
404
405 if c == '*' then
406 if c1 == '*' then
407 if c0 != ' ' or c2 != ' ' then
408 return new TokenStrongStar(loc, pos, c)
409 else
410 return new TokenEmStar(loc, pos, c)
411 end
412 end
413 if c0 != ' ' or c1 != ' ' then
414 return new TokenEmStar(loc, pos, c)
415 else
416 return new TokenNone(loc, pos, c)
417 end
418 else if c == '_' then
419 if c1 == '_' then
420 if c0 != ' ' or c2 != ' 'then
421 return new TokenStrongUnderscore(loc, pos, c)
422 else
423 return new TokenEmUnderscore(loc, pos, c)
424 end
425 end
426 if ext_mode then
427 if (c0.is_letter or c0.is_digit) and c0 != '_' and
428 (c1.is_letter or c1.is_digit) then
429 return new TokenNone(loc, pos, c)
430 else
431 return new TokenEmUnderscore(loc, pos, c)
432 end
433 end
434 if c0 != ' ' or c1 != ' ' then
435 return new TokenEmUnderscore(loc, pos, c)
436 else
437 return new TokenNone(loc, pos, c)
438 end
439 else if c == '!' then
440 if c1 == '[' then return new TokenImage(loc, pos, c)
441 return new TokenNone(loc, pos, c)
442 else if c == '[' then
443 return new TokenLink(loc, pos, c)
444 else if c == ']' then
445 return new TokenNone(loc, pos, c)
446 else if c == '`' then
447 if c1 == '`' then
448 return new TokenCodeDouble(loc, pos, c)
449 else
450 return new TokenCodeSingle(loc, pos, c)
451 end
452 else if c == '\\' then
453 if c1 == '\\' or c1 == '[' or c1 == ']' or c1 == '(' or c1 == ')' or c1 == '{' or c1 == '}' or c1 == '#' or c1 == '"' or c1 == '\'' or c1 == '.' or c1 == '<' or c1 == '>' or c1 == '*' or c1 == '+' or c1 == '-' or c1 == '_' or c1 == '!' or c1 == '`' or c1 == '~' or c1 == '^' then
454 return new TokenEscape(loc, pos, c)
455 else
456 return new TokenNone(loc, pos, c)
457 end
458 else if c == '<' then
459 return new TokenHTML(loc, pos, c)
460 else if c == '&' then
461 return new TokenEntity(loc, pos, c)
462 else
463 if ext_mode then
464 if c == '~' and c1 == '~' then
465 return new TokenStrike(loc, pos, c)
466 end
467 end
468 return new TokenNone(loc, pos, c)
469 end
470 end
471
472 # Find the position of a `token` in `self`.
473 fun find_token(text: Text, start: Int, token: Token): Int do
474 var pos = start
475 while pos < text.length do
476 if token_at(text, pos).is_same_type(token) then
477 return pos
478 end
479 pos += 1
480 end
481 return -1
482 end
483
484 # Location used for next parsed token.
485 #
486 # This location can be changed by the emitter to adjust with `\n` found
487 # in the input.
488 private fun current_loc: MDLocation do return emitter.current_loc
489 end
490
491 # Emit output corresponding to blocks content.
492 #
493 # Blocks are created by a previous pass in `MarkdownProcessor`.
494 # The emitter use a `Decorator` to select the output format.
495 class MarkdownEmitter
496
497 # Kind of processor used for parsing.
498 type PROCESSOR: MarkdownProcessor
499
500 # Processor containing link refs.
501 var processor: PROCESSOR
502
503 # Kind of decorator used for decoration.
504 type DECORATOR: Decorator
505
506 # Decorator used for output.
507 # Default is `HTMLDecorator`
508 var decorator: DECORATOR is writable, lazy do
509 return new HTMLDecorator
510 end
511
512 # Create a new `MarkdownEmitter` using a custom `decorator`.
513 init with_decorator(processor: PROCESSOR, decorator: DECORATOR) do
514 init processor
515 self.decorator = decorator
516 end
517
518 # Output `block` using `decorator` in the current buffer.
519 fun emit(block: Block): Text do
520 var buffer = push_buffer
521 block.emit(self)
522 pop_buffer
523 return buffer
524 end
525
526 # Output the content of `block`.
527 fun emit_in(block: Block) do block.emit_in(self)
528
529 # Transform and emit mardown text
530 fun emit_text(text: Text) do emit_text_until(text, 0, null)
531
532 # Transform and emit mardown text starting at `start` and
533 # until a token with the same type as `token` is found.
534 # Go until the end of `text` if `token` is null.
535 fun emit_text_until(text: Text, start: Int, token: nullable Token): Int do
536 var old_text = current_text
537 var old_pos = current_pos
538 current_text = text
539 current_pos = start
540 while current_pos < text.length do
541 if text[current_pos] == '\n' then
542 current_loc.line_start += 1
543 current_loc.column_start = -current_pos
544 end
545 var mt = processor.token_at(text, current_pos)
546 if (token != null and not token isa TokenNone) and
547 (mt.is_same_type(token) or
548 (token isa TokenEmStar and mt isa TokenStrongStar) or
549 (token isa TokenEmUnderscore and mt isa TokenStrongUnderscore)) then
550 return current_pos
551 end
552 mt.emit(self)
553 current_pos += 1
554 end
555 current_text = old_text
556 current_pos = old_pos
557 return -1
558 end
559
560 # Currently processed position in `current_text`.
561 # Used when visiting inline production with `emit_text_until`.
562 private var current_pos: Int = -1
563
564 # Currently processed text.
565 # Used when visiting inline production with `emit_text_until`.
566 private var current_text: nullable Text = null
567
568 # Stacked buffers.
569 private var buffer_stack = new List[FlatBuffer]
570
571 # Push a new buffer on the stack.
572 private fun push_buffer: FlatBuffer do
573 var buffer = new FlatBuffer
574 buffer_stack.add buffer
575 return buffer
576 end
577
578 # Pop the last buffer.
579 private fun pop_buffer do buffer_stack.pop
580
581 # Current output buffer.
582 private fun current_buffer: FlatBuffer do
583 assert not buffer_stack.is_empty
584 return buffer_stack.last
585 end
586
587 # Stacked locations.
588 private var loc_stack = new List[MDLocation]
589
590 # Push a new MDLocation on the stack.
591 private fun push_loc(location: MDLocation) do loc_stack.add location
592
593 # Pop the last buffer.
594 private fun pop_loc: MDLocation do return loc_stack.pop
595
596 # Current output buffer.
597 private fun current_loc: MDLocation do
598 assert not loc_stack.is_empty
599 return loc_stack.last
600 end
601
602 # Append `e` to current buffer.
603 fun add(e: Writable) do
604 if e isa Text then
605 current_buffer.append e
606 else
607 current_buffer.append e.write_to_string
608 end
609 end
610
611 # Append `c` to current buffer.
612 fun addc(c: Char) do add c.to_s
613
614 # Append a "\n" line break.
615 fun addn do add "\n"
616 end
617
618 # A Link Reference.
619 # Links that are specified somewhere in the mardown document to be reused as shortcuts.
620 #
621 # ~~~raw
622 # [1]: http://example.com/ "Optional title"
623 # ~~~
624 class LinkRef
625
626 # Link href
627 var link: String
628
629 # Optional link title
630 var title: nullable String = null
631
632 # Is the link an abreviation?
633 var is_abbrev = false
634
635 # Create a link with a title.
636 init with_title(link: String, title: nullable String) do
637 self.link = link
638 self.title = title
639 end
640 end
641
642 # A `Decorator` is used to emit mardown into a specific format.
643 # Default decorator used is `HTMLDecorator`.
644 interface Decorator
645
646 # Kind of emitter used for decoration.
647 type EMITTER: MarkdownEmitter
648
649 # Render a single plain char.
650 #
651 # Redefine this method to add special escaping for plain text.
652 fun add_char(v: EMITTER, c: Char) do v.addc c
653
654 # Render a ruler block.
655 fun add_ruler(v: EMITTER, block: BlockRuler) is abstract
656
657 # Render a headline block with corresponding level.
658 fun add_headline(v: EMITTER, block: BlockHeadline) is abstract
659
660 # Render a paragraph block.
661 fun add_paragraph(v: EMITTER, block: BlockParagraph) is abstract
662
663 # Render a code or fence block.
664 fun add_code(v: EMITTER, block: BlockCode) is abstract
665
666 # Render a blockquote.
667 fun add_blockquote(v: EMITTER, block: BlockQuote) is abstract
668
669 # Render an unordered list.
670 fun add_unorderedlist(v: EMITTER, block: BlockUnorderedList) is abstract
671
672 # Render an ordered list.
673 fun add_orderedlist(v: EMITTER, block: BlockOrderedList) is abstract
674
675 # Render a list item.
676 fun add_listitem(v: EMITTER, block: BlockListItem) is abstract
677
678 # Render an emphasis text.
679 fun add_em(v: EMITTER, text: Text) is abstract
680
681 # Render a strong text.
682 fun add_strong(v: EMITTER, text: Text) is abstract
683
684 # Render a strike text.
685 #
686 # Extended mode only (see `MarkdownProcessor::ext_mode`)
687 fun add_strike(v: EMITTER, text: Text) is abstract
688
689 # Render a link.
690 fun add_link(v: EMITTER, link: Text, name: Text, comment: nullable Text) is abstract
691
692 # Render an image.
693 fun add_image(v: EMITTER, link: Text, name: Text, comment: nullable Text) is abstract
694
695 # Render an abbreviation.
696 fun add_abbr(v: EMITTER, name: Text, comment: Text) is abstract
697
698 # Render a code span reading from a buffer.
699 fun add_span_code(v: EMITTER, buffer: Text, from, to: Int) is abstract
700
701 # Render a text and escape it.
702 fun append_value(v: EMITTER, value: Text) is abstract
703
704 # Render code text from buffer and escape it.
705 fun append_code(v: EMITTER, buffer: Text, from, to: Int) is abstract
706
707 # Render a character escape.
708 fun escape_char(v: EMITTER, char: Char) is abstract
709
710 # Render a line break
711 fun add_line_break(v: EMITTER) is abstract
712
713 # Generate a new html valid id from a `String`.
714 fun strip_id(txt: String): String is abstract
715
716 # Found headlines during the processing labeled by their ids.
717 fun headlines: ArrayMap[String, HeadLine] is abstract
718 end
719
720 # Class representing a markdown headline.
721 class HeadLine
722 # Unique identifier of this headline.
723 var id: String
724
725 # Text of the headline.
726 var title: String
727
728 # Level of this headline.
729 #
730 # According toe the markdown specification, level must be in `[1..6]`.
731 var level: Int
732 end
733
734 # `Decorator` that outputs HTML.
735 class HTMLDecorator
736 super Decorator
737
738 redef var headlines = new ArrayMap[String, HeadLine]
739
740 redef fun add_ruler(v, block) do v.add "<hr/>\n"
741
742 redef fun add_headline(v, block) do
743 # save headline
744 var txt = block.block.first_line.value
745 var id = strip_id(txt)
746 var lvl = block.depth
747 headlines[id] = new HeadLine(id, txt, lvl)
748 # output it
749 v.add "<h{lvl} id=\"{id}\">"
750 v.emit_in block
751 v.add "</h{lvl}>\n"
752 end
753
754 redef fun add_paragraph(v, block) do
755 v.add "<p>"
756 v.emit_in block
757 v.add "</p>\n"
758 end
759
760 redef fun add_code(v, block) do
761 if block isa BlockFence and block.meta != null then
762 v.add "<pre class=\"{block.meta.to_s}\"><code>"
763 else
764 v.add "<pre><code>"
765 end
766 v.emit_in block
767 v.add "</code></pre>\n"
768 end
769
770 redef fun add_blockquote(v, block) do
771 v.add "<blockquote>\n"
772 v.emit_in block
773 v.add "</blockquote>\n"
774 end
775
776 redef fun add_unorderedlist(v, block) do
777 v.add "<ul>\n"
778 v.emit_in block
779 v.add "</ul>\n"
780 end
781
782 redef fun add_orderedlist(v, block) do
783 v.add "<ol>\n"
784 v.emit_in block
785 v.add "</ol>\n"
786 end
787
788 redef fun add_listitem(v, block) do
789 v.add "<li>"
790 v.emit_in block
791 v.add "</li>\n"
792 end
793
794 redef fun add_em(v, text) do
795 v.add "<em>"
796 v.add text
797 v.add "</em>"
798 end
799
800 redef fun add_strong(v, text) do
801 v.add "<strong>"
802 v.add text
803 v.add "</strong>"
804 end
805
806 redef fun add_strike(v, text) do
807 v.add "<del>"
808 v.add text
809 v.add "</del>"
810 end
811
812 redef fun add_image(v, link, name, comment) do
813 v.add "<img src=\""
814 append_value(v, link)
815 v.add "\" alt=\""
816 append_value(v, name)
817 v.add "\""
818 if comment != null and not comment.is_empty then
819 v.add " title=\""
820 append_value(v, comment)
821 v.add "\""
822 end
823 v.add "/>"
824 end
825
826 redef fun add_link(v, link, name, comment) do
827 v.add "<a href=\""
828 append_value(v, link)
829 v.add "\""
830 if comment != null and not comment.is_empty then
831 v.add " title=\""
832 append_value(v, comment)
833 v.add "\""
834 end
835 v.add ">"
836 v.emit_text(name)
837 v.add "</a>"
838 end
839
840 redef fun add_abbr(v, name, comment) do
841 v.add "<abbr title=\""
842 append_value(v, comment)
843 v.add "\">"
844 v.emit_text(name)
845 v.add "</abbr>"
846 end
847
848 redef fun add_span_code(v, text, from, to) do
849 v.add "<code>"
850 append_code(v, text, from, to)
851 v.add "</code>"
852 end
853
854 redef fun add_line_break(v) do
855 v.add "<br/>"
856 end
857
858 redef fun append_value(v, text) do for c in text do escape_char(v, c)
859
860 redef fun escape_char(v, c) do
861 if c == '&' then
862 v.add "&amp;"
863 else if c == '<' then
864 v.add "&lt;"
865 else if c == '>' then
866 v.add "&gt;"
867 else if c == '"' then
868 v.add "&quot;"
869 else if c == '\'' then
870 v.add "&apos;"
871 else
872 v.addc c
873 end
874 end
875
876 redef fun append_code(v, buffer, from, to) do
877 for i in [from..to[ do
878 var c = buffer[i]
879 if c == '&' then
880 v.add "&amp;"
881 else if c == '<' then
882 v.add "&lt;"
883 else if c == '>' then
884 v.add "&gt;"
885 else
886 v.addc c
887 end
888 end
889 end
890
891 redef fun strip_id(txt) do
892 # strip id
893 var b = new FlatBuffer
894 for c in txt do
895 if c == ' ' then
896 b.add '_'
897 else
898 if not c.is_letter and
899 not c.is_digit and
900 not allowed_id_chars.has(c) then continue
901 b.add c
902 end
903 end
904 var res = b.to_s
905 var key = res
906 # check for multiple id definitions
907 if headlines.has_key(key) then
908 var i = 1
909 key = "{res}_{i}"
910 while headlines.has_key(key) do
911 i += 1
912 key = "{res}_{i}"
913 end
914 end
915 return key
916 end
917
918 private var allowed_id_chars: Array[Char] = ['-', '_', ':', '.']
919 end
920
921 # Location in a Markdown input.
922 class MDLocation
923
924 # Starting line number (starting from 1).
925 var line_start: Int
926
927 # Starting column number (starting from 1).
928 var column_start: Int
929
930 # Stopping line number (starting from 1).
931 var line_end: Int
932
933 # Stopping column number (starting from 1).
934 var column_end: Int
935
936 redef fun to_s do return "{line_start},{column_start}--{line_end},{column_end}"
937
938 # Return a copy of `self`.
939 fun copy: MDLocation do
940 return new MDLocation(line_start, column_start, line_end, column_end)
941 end
942 end
943
944 # A block of markdown lines.
945 # A `MDBlock` can contains lines and/or sub-blocks.
946 class MDBlock
947
948 # Position of `self` in the input.
949 var location: MDLocation
950
951 # Kind of block.
952 # See `Block`.
953 var kind: Block = new BlockNone(self) is writable
954
955 # First line if any.
956 var first_line: nullable MDLine = null is writable
957
958 # Last line if any.
959 var last_line: nullable MDLine = null is writable
960
961 # First sub-block if any.
962 var first_block: nullable MDBlock = null is writable
963
964 # Last sub-block if any.
965 var last_block: nullable MDBlock = null is writable
966
967 # Previous block if any.
968 var prev: nullable MDBlock = null is writable
969
970 # Next block if any.
971 var next: nullable MDBlock = null is writable
972
973 # Does this block contain subblocks?
974 fun has_blocks: Bool do return first_block != null
975
976 # Count sub-blocks.
977 fun count_blocks: Int do
978 var count = 0
979 var block = first_block
980 while block != null do
981 count += 1
982 block = block.next
983 end
984 return count
985 end
986
987 # Does this block contain lines?
988 fun has_lines: Bool do return first_line != null
989
990 # Count block lines.
991 fun count_lines: Int do
992 var count = 0
993 var line = first_line
994 while line != null do
995 count += 1
996 line = line.next
997 end
998 return count
999 end
1000
1001 # Split `self` creating a new sub-block having `line` has `last_line`.
1002 fun split(line: MDLine): MDBlock do
1003 # location for new block
1004 var new_loc = new MDLocation(
1005 first_line.location.line_start,
1006 first_line.location.column_start,
1007 line.location.line_end,
1008 line.location.column_end)
1009 # create block
1010 var block = new MDBlock(new_loc)
1011 block.first_line = first_line
1012 block.last_line = line
1013 first_line = line.next
1014 line.next = null
1015 if first_line == null then
1016 last_line = null
1017 else
1018 first_line.prev = null
1019 # update current block loc
1020 location.line_start = first_line.location.line_start
1021 location.column_start = first_line.location.column_start
1022 end
1023 if first_block == null then
1024 first_block = block
1025 last_block = block
1026 else
1027 last_block.next = block
1028 last_block = block
1029 end
1030 return block
1031 end
1032
1033 # Add a `line` to this block.
1034 fun add_line(line: MDLine) do
1035 if last_line == null then
1036 first_line = line
1037 last_line = line
1038 else
1039 last_line.next_empty = line.is_empty
1040 line.prev_empty = last_line.is_empty
1041 line.prev = last_line
1042 last_line.next = line
1043 last_line = line
1044 end
1045 end
1046
1047 # Remove `line` from this block.
1048 fun remove_line(line: MDLine) do
1049 if line.prev == null then
1050 first_line = line.next
1051 else
1052 line.prev.next = line.next
1053 end
1054 if line.next == null then
1055 last_line = line.prev
1056 else
1057 line.next.prev = line.prev
1058 end
1059 line.prev = null
1060 line.next = null
1061 end
1062
1063 # Remove leading empty lines.
1064 fun remove_leading_empty_lines: Bool do
1065 var was_empty = false
1066 var line = first_line
1067 while line != null and line.is_empty do
1068 remove_line line
1069 line = first_line
1070 was_empty = true
1071 end
1072 return was_empty
1073 end
1074
1075 # Remove trailing empty lines.
1076 fun remove_trailing_empty_lines: Bool do
1077 var was_empty = false
1078 var line = last_line
1079 while line != null and line.is_empty do
1080 remove_line line
1081 line = last_line
1082 was_empty = true
1083 end
1084 return was_empty
1085 end
1086
1087 # Remove leading and trailing empty lines.
1088 fun remove_surrounding_empty_lines: Bool do
1089 var was_empty = false
1090 if remove_leading_empty_lines then was_empty = true
1091 if remove_trailing_empty_lines then was_empty = true
1092 return was_empty
1093 end
1094
1095 # Remove list markers and up to 4 leading spaces.
1096 # Used to clean nested lists.
1097 fun remove_list_indent(v: MarkdownProcessor) do
1098 var line = first_line
1099 while line != null do
1100 if not line.is_empty then
1101 var kind = v.line_kind(line)
1102 if kind isa LineList then
1103 line.value = kind.extract_value(line)
1104 else
1105 line.value = line.value.substring_from(line.leading.min(4))
1106 end
1107 line.leading = line.process_leading
1108 end
1109 line = line.next
1110 end
1111 end
1112
1113 # Collect block line text.
1114 fun text: String do
1115 var text = new FlatBuffer
1116 var line = first_line
1117 while line != null do
1118 if not line.is_empty then
1119 text.append line.text
1120 end
1121 text.append "\n"
1122 line = line.next
1123 end
1124 return text.write_to_string
1125 end
1126 end
1127
1128 # Representation of a markdown block in the AST.
1129 # Each `Block` is linked to a `MDBlock` that contains mardown code.
1130 abstract class Block
1131
1132 # The markdown block `self` is related to.
1133 var block: MDBlock
1134
1135 # Output `self` using `v.decorator`.
1136 fun emit(v: MarkdownEmitter) do v.emit_in(self)
1137
1138 # Emit the containts of `self`, lines or blocks.
1139 fun emit_in(v: MarkdownEmitter) do
1140 block.remove_surrounding_empty_lines
1141 if block.has_lines then
1142 emit_lines(v)
1143 else
1144 emit_blocks(v)
1145 end
1146 end
1147
1148 # Emit lines contained in `block`.
1149 fun emit_lines(v: MarkdownEmitter) do
1150 var tpl = v.push_buffer
1151 var line = block.first_line
1152 while line != null do
1153 if not line.is_empty then
1154 v.add line.value.substring(line.leading, line.value.length - line.trailing)
1155 if line.trailing >= 2 then v.decorator.add_line_break(v)
1156 end
1157 if line.next != null then
1158 v.addn
1159 end
1160 line = line.next
1161 end
1162 v.pop_buffer
1163 v.emit_text(tpl)
1164 end
1165
1166 # Emit sub-blocks contained in `block`.
1167 fun emit_blocks(v: MarkdownEmitter) do
1168 var block = self.block.first_block
1169 while block != null do
1170 v.push_loc(block.location)
1171 block.kind.emit(v)
1172 v.pop_loc
1173 block = block.next
1174 end
1175 end
1176 end
1177
1178 # A block without any markdown specificities.
1179 #
1180 # Actually use the same implementation than `BlockCode`,
1181 # this class is only used for typing purposes.
1182 class BlockNone
1183 super Block
1184 end
1185
1186 # A markdown blockquote.
1187 class BlockQuote
1188 super Block
1189
1190 redef fun emit(v) do v.decorator.add_blockquote(v, self)
1191
1192 # Remove blockquote markers.
1193 private fun remove_block_quote_prefix(block: MDBlock) do
1194 var line = block.first_line
1195 while line != null do
1196 if not line.is_empty then
1197 if line.value[line.leading] == '>' then
1198 var rem = line.leading + 1
1199 if line.leading + 1 < line.value.length and
1200 line.value[line.leading + 1] == ' ' then
1201 rem += 1
1202 end
1203 line.value = line.value.substring_from(rem)
1204 line.leading = line.process_leading
1205 end
1206 end
1207 line = line.next
1208 end
1209 end
1210 end
1211
1212 # A markdown code block.
1213 class BlockCode
1214 super Block
1215
1216 # Number of char to skip at the beginning of the line.
1217 #
1218 # Block code lines start at 4 spaces.
1219 protected var line_start = 4
1220
1221 redef fun emit(v) do v.decorator.add_code(v, self)
1222
1223 redef fun emit_lines(v) do
1224 var line = block.first_line
1225 while line != null do
1226 if not line.is_empty then
1227 v.decorator.append_code(v, line.value, line_start, line.value.length)
1228 end
1229 v.addn
1230 line = line.next
1231 end
1232 end
1233 end
1234
1235 # A markdown code-fence block.
1236 #
1237 # Actually use the same implementation than `BlockCode`,
1238 # this class is only used for typing purposes.
1239 class BlockFence
1240 super BlockCode
1241
1242 # Any string found after fence token.
1243 var meta: nullable Text
1244
1245 # Fence code lines start at 0 spaces.
1246 redef var line_start = 0
1247 end
1248
1249 # A markdown headline.
1250 class BlockHeadline
1251 super Block
1252
1253 redef fun emit(v) do
1254 var loc = block.location.copy
1255 loc.column_start += start
1256 v.push_loc(loc)
1257 v.decorator.add_headline(v, self)
1258 v.pop_loc
1259 end
1260
1261 private var start = 0
1262
1263 # Depth of the headline used to determine the headline level.
1264 var depth = 0
1265
1266 # Remove healine marks from lines contained in `self`.
1267 private fun transform_headline(block: MDBlock) do
1268 if depth > 0 then return
1269 var level = 0
1270 var line = block.first_line
1271 if line.is_empty then return
1272 var start = line.leading
1273 while start < line.value.length and line.value[start] == '#' do
1274 level += 1
1275 start += 1
1276 end
1277 while start < line.value.length and line.value[start] == ' ' do
1278 start += 1
1279 end
1280 if start >= line.value.length then
1281 line.is_empty = true
1282 else
1283 var nend = line.value.length - line.trailing - 1
1284 while line.value[nend] == '#' do nend -= 1
1285 while line.value[nend] == ' ' do nend -= 1
1286 line.value = line.value.substring(start, nend - start + 1)
1287 line.leading = 0
1288 line.trailing = 0
1289 end
1290 self.start = start
1291 depth = level.min(6)
1292 end
1293 end
1294
1295 # A markdown list item block.
1296 class BlockListItem
1297 super Block
1298
1299 redef fun emit(v) do v.decorator.add_listitem(v, self)
1300 end
1301
1302 # A markdown list block.
1303 # Can be either an ordered or unordered list, this class is mainly used to factorize code.
1304 abstract class BlockList
1305 super Block
1306
1307 # Split list block into list items sub-blocks.
1308 private fun init_block(v: MarkdownProcessor) do
1309 var line = block.first_line
1310 line = line.next
1311 while line != null do
1312 var t = v.line_kind(line)
1313 if t isa LineList or
1314 (not line.is_empty and (line.prev_empty and line.leading == 0 and
1315 not (t isa LineList))) then
1316 var sblock = block.split(line.prev.as(not null))
1317 sblock.kind = new BlockListItem(sblock)
1318 end
1319 line = line.next
1320 end
1321 var sblock = block.split(block.last_line.as(not null))
1322 sblock.kind = new BlockListItem(sblock)
1323 end
1324
1325 # Expand list items as paragraphs if needed.
1326 private fun expand_paragraphs(block: MDBlock) do
1327 var outer = block.first_block
1328 var inner: nullable MDBlock
1329 var has_paragraph = false
1330 while outer != null and not has_paragraph do
1331 if outer.kind isa BlockListItem then
1332 inner = outer.first_block
1333 while inner != null and not has_paragraph do
1334 if inner.kind isa BlockParagraph then
1335 has_paragraph = true
1336 end
1337 inner = inner.next
1338 end
1339 end
1340 outer = outer.next
1341 end
1342 if has_paragraph then
1343 outer = block.first_block
1344 while outer != null do
1345 if outer.kind isa BlockListItem then
1346 inner = outer.first_block
1347 while inner != null do
1348 if inner.kind isa BlockNone then
1349 inner.kind = new BlockParagraph(inner)
1350 end
1351 inner = inner.next
1352 end
1353 end
1354 outer = outer.next
1355 end
1356 end
1357 end
1358 end
1359
1360 # A markdown ordered list.
1361 class BlockOrderedList
1362 super BlockList
1363
1364 redef fun emit(v) do v.decorator.add_orderedlist(v, self)
1365 end
1366
1367 # A markdown unordred list.
1368 class BlockUnorderedList
1369 super BlockList
1370
1371 redef fun emit(v) do v.decorator.add_unorderedlist(v, self)
1372 end
1373
1374 # A markdown paragraph block.
1375 class BlockParagraph
1376 super Block
1377
1378 redef fun emit(v) do v.decorator.add_paragraph(v, self)
1379 end
1380
1381 # A markdown ruler.
1382 class BlockRuler
1383 super Block
1384
1385 redef fun emit(v) do v.decorator.add_ruler(v, self)
1386 end
1387
1388 # Xml blocks that can be found in markdown markup.
1389 class BlockXML
1390 super Block
1391
1392 redef fun emit_lines(v) do
1393 var line = block.first_line
1394 while line != null do
1395 if not line.is_empty then v.add line.value
1396 v.addn
1397 line = line.next
1398 end
1399 end
1400 end
1401
1402 # A markdown line.
1403 class MDLine
1404
1405 # Location of `self` in the original input.
1406 var location: MDLocation
1407
1408 # Text contained in this line.
1409 var value: String is writable
1410
1411 # Is this line empty?
1412 # Lines containing only spaces are considered empty.
1413 var is_empty: Bool = true is writable
1414
1415 # Previous line in `MDBlock` or null if first line.
1416 var prev: nullable MDLine = null is writable
1417
1418 # Next line in `MDBlock` or null if last line.
1419 var next: nullable MDLine = null is writable
1420
1421 # Is the previous line empty?
1422 var prev_empty: Bool = false is writable
1423
1424 # Is the next line empty?
1425 var next_empty: Bool = false is writable
1426
1427 # Initialize a new MDLine from its string value
1428 init do
1429 self.leading = process_leading
1430 if leading != value.length then
1431 self.is_empty = false
1432 self.trailing = process_trailing
1433 end
1434 end
1435
1436 # Set `value` as an empty String and update `leading`, `trailing` and is_`empty`.
1437 fun clear do
1438 value = ""
1439 leading = 0
1440 trailing = 0
1441 is_empty = true
1442 if prev != null then prev.next_empty = true
1443 if next != null then next.prev_empty = true
1444 end
1445
1446 # Number or leading spaces on this line.
1447 var leading: Int = 0 is writable
1448
1449 # Compute `leading` depending on `value`.
1450 fun process_leading: Int do
1451 var count = 0
1452 var value = self.value
1453 while count < value.length and value[count] == ' ' do count += 1
1454 if leading == value.length then clear
1455 return count
1456 end
1457
1458 # Number of trailing spaces on this line.
1459 var trailing: Int = 0 is writable
1460
1461 # Compute `trailing` depending on `value`.
1462 fun process_trailing: Int do
1463 var count = 0
1464 var value = self.value
1465 while value[value.length - count - 1] == ' ' do
1466 count += 1
1467 end
1468 return count
1469 end
1470
1471 # Count the amount of `ch` in this line.
1472 # Return A value > 0 if this line only consists of `ch` end spaces.
1473 fun count_chars(ch: Char): Int do
1474 var count = 0
1475 for c in value do
1476 if c == ' ' then
1477 continue
1478 end
1479 if c == ch then
1480 count += 1
1481 continue
1482 end
1483 count = 0
1484 break
1485 end
1486 return count
1487 end
1488
1489 # Count the amount of `ch` at the start of this line ignoring spaces.
1490 fun count_chars_start(ch: Char): Int do
1491 var count = 0
1492 for c in value do
1493 if c == ' ' then
1494 continue
1495 end
1496 if c == ch then
1497 count += 1
1498 else
1499 break
1500 end
1501 end
1502 return count
1503 end
1504
1505 # Last XML line if any.
1506 private var xml_end_line: nullable MDLine = null
1507
1508 # Does `value` contains valid XML markup?
1509 private fun check_html: Bool do
1510 var tags = new Array[String]
1511 var tmp = new FlatBuffer
1512 var pos = leading
1513 if pos + 1 < value.length and value[pos + 1] == '!' then
1514 if read_xml_comment(self, pos) > 0 then return true
1515 end
1516 pos = value.read_xml(tmp, pos, false)
1517 var tag: String
1518 if pos > -1 then
1519 tag = tmp.xml_tag
1520 if not tag.is_html_block then
1521 return false
1522 end
1523 if tag == "hr" then
1524 xml_end_line = self
1525 return true
1526 end
1527 tags.add tag
1528 var line: nullable MDLine = self
1529 while line != null do
1530 while pos < line.value.length and line.value[pos] != '<' do
1531 pos += 1
1532 end
1533 if pos >= line.value.length then
1534 if pos - 2 >= 0 and line.value[pos - 2] == '/' then
1535 tags.pop
1536 if tags.is_empty then
1537 xml_end_line = line
1538 break
1539 end
1540 end
1541 line = line.next
1542 pos = 0
1543 else
1544 tmp = new FlatBuffer
1545 var new_pos = line.value.read_xml(tmp, pos, false)
1546 if new_pos > 0 then
1547 tag = tmp.xml_tag
1548 if tag.is_html_block and not tag == "hr" then
1549 if tmp[1] == '/' then
1550 if tags.last != tag then
1551 return false
1552 end
1553 tags.pop
1554 else
1555 tags.add tag
1556 end
1557 end
1558 if tags.is_empty then
1559 xml_end_line = line
1560 break
1561 end
1562 pos = new_pos
1563 else
1564 pos += 1
1565 end
1566 end
1567 end
1568 return tags.is_empty
1569 end
1570 return false
1571 end
1572
1573 # Read a XML comment.
1574 # Used by `check_html`.
1575 private fun read_xml_comment(first_line: MDLine, start: Int): Int do
1576 var line: nullable MDLine = first_line
1577 if start + 3 < line.value.length then
1578 if line.value[2] == '-' and line.value[3] == '-' then
1579 var pos = start + 4
1580 while line != null do
1581 while pos < line.value.length and line.value[pos] != '-' do
1582 pos += 1
1583 end
1584 if pos == line.value.length then
1585 line = line.next
1586 pos = 0
1587 else
1588 if pos + 2 < line.value.length then
1589 if line.value[pos + 1] == '-' and line.value[pos + 2] == '>' then
1590 first_line.xml_end_line = line
1591 return pos + 3
1592 end
1593 end
1594 pos += 1
1595 end
1596 end
1597 end
1598 end
1599 return -1
1600 end
1601
1602 # Extract the text of `self` without leading and trailing.
1603 fun text: String do return value.substring(leading, value.length - trailing)
1604 end
1605
1606 # A markdown line.
1607 interface Line
1608
1609 # Parse the line.
1610 # See `MarkdownProcessor::recurse`.
1611 fun process(v: MarkdownProcessor) is abstract
1612 end
1613
1614 # An empty markdown line.
1615 class LineEmpty
1616 super Line
1617
1618 redef fun process(v) do
1619 v.current_line = v.current_line.next
1620 end
1621 end
1622
1623 # A non-specific markdown construction.
1624 # Mainly used as part of another line construct such as paragraphs or lists.
1625 class LineOther
1626 super Line
1627
1628 redef fun process(v) do
1629 var line = v.current_line
1630 # go to block end
1631 var was_empty = line.prev_empty
1632 while line != null and not line.is_empty do
1633 var t = v.line_kind(line)
1634 if (v.in_list or v.ext_mode) and t isa LineList then
1635 break
1636 end
1637 if v.ext_mode and (t isa LineCode or t isa LineFence) then
1638 break
1639 end
1640 if t isa LineHeadline or t isa LineHeadline1 or t isa LineHeadline2 or
1641 t isa LineHR or t isa LineBlockquote or t isa LineXML then
1642 break
1643 end
1644 line = line.next
1645 end
1646 # build block
1647 if line != null and not line.is_empty then
1648 var block = v.current_block.split(line.prev.as(not null))
1649 if v.in_list and not was_empty then
1650 block.kind = new BlockNone(block)
1651 else
1652 block.kind = new BlockParagraph(block)
1653 end
1654 v.current_block.remove_leading_empty_lines
1655 else
1656 var block: MDBlock
1657 if line != null then
1658 block = v.current_block.split(line)
1659 else
1660 block = v.current_block.split(v.current_block.last_line.as(not null))
1661 end
1662 if v.in_list and (line == null or not line.is_empty) and not was_empty then
1663 block.kind = new BlockNone(block)
1664 else
1665 block.kind = new BlockParagraph(block)
1666 end
1667 v.current_block.remove_leading_empty_lines
1668 end
1669 v.current_line = v.current_block.first_line
1670 end
1671 end
1672
1673 # A line of markdown code.
1674 class LineCode
1675 super Line
1676
1677 redef fun process(v) do
1678 var line = v.current_line
1679 # lookup block end
1680 while line != null and (line.is_empty or v.line_kind(line) isa LineCode) do
1681 line = line.next
1682 end
1683 # split at block end line
1684 var block: MDBlock
1685 if line != null then
1686 block = v.current_block.split(line.prev.as(not null))
1687 else
1688 block = v.current_block.split(v.current_block.last_line.as(not null))
1689 end
1690 block.kind = new BlockCode(block)
1691 block.remove_surrounding_empty_lines
1692 v.current_line = v.current_block.first_line
1693 end
1694 end
1695
1696 # A line of raw XML.
1697 class LineXML
1698 super Line
1699
1700 redef fun process(v) do
1701 var line = v.current_line
1702 var prev = line.prev
1703 if prev != null then v.current_block.split(prev)
1704 var block = v.current_block.split(line.xml_end_line.as(not null))
1705 block.kind = new BlockXML(block)
1706 v.current_block.remove_leading_empty_lines
1707 v.current_line = v.current_block.first_line
1708 end
1709 end
1710
1711 # A markdown blockquote line.
1712 class LineBlockquote
1713 super Line
1714
1715 redef fun process(v) do
1716 var line = v.current_line
1717 # go to bquote end
1718 while line != null do
1719 if not line.is_empty and (line.prev_empty and
1720 line.leading == 0 and
1721 not v.line_kind(line) isa LineBlockquote) then break
1722 line = line.next
1723 end
1724 # build sub block
1725 var block: MDBlock
1726 if line != null then
1727 block = v.current_block.split(line.prev.as(not null))
1728 else
1729 block = v.current_block.split(v.current_block.last_line.as(not null))
1730 end
1731 var kind = new BlockQuote(block)
1732 block.kind = kind
1733 block.remove_surrounding_empty_lines
1734 kind.remove_block_quote_prefix(block)
1735 v.current_line = line
1736 v.recurse(block, false)
1737 v.current_line = v.current_block.first_line
1738 end
1739 end
1740
1741 # A markdown ruler line.
1742 class LineHR
1743 super Line
1744
1745 redef fun process(v) do
1746 var line = v.current_line
1747 if line.prev != null then v.current_block.split(line.prev.as(not null))
1748 var block = v.current_block.split(line.as(not null))
1749 block.kind = new BlockRuler(block)
1750 v.current_block.remove_leading_empty_lines
1751 v.current_line = v.current_block.first_line
1752 end
1753 end
1754
1755 # A markdown fence code line.
1756 class LineFence
1757 super Line
1758
1759 redef fun process(v) do
1760 # go to fence end
1761 var line = v.current_line.next
1762 while line != null do
1763 if v.line_kind(line) isa LineFence then break
1764 line = line.next
1765 end
1766 if line != null then
1767 line = line.next
1768 end
1769 # build fence block
1770 var block: MDBlock
1771 if line != null then
1772 block = v.current_block.split(line.prev.as(not null))
1773 else
1774 block = v.current_block.split(v.current_block.last_line.as(not null))
1775 end
1776 block.remove_surrounding_empty_lines
1777 var meta = block.first_line.value.meta_from_fence
1778 block.kind = new BlockFence(block, meta)
1779 block.first_line.clear
1780 var last = block.last_line
1781 if last != null and v.line_kind(last) isa LineFence then
1782 block.last_line.clear
1783 end
1784 block.remove_surrounding_empty_lines
1785 v.current_line = line
1786 end
1787 end
1788
1789 # A markdown headline.
1790 class LineHeadline
1791 super Line
1792
1793 redef fun process(v) do
1794 var line = v.current_line
1795 var lprev = line.prev
1796 if lprev != null then v.current_block.split(lprev)
1797 var block = v.current_block.split(line.as(not null))
1798 var kind = new BlockHeadline(block)
1799 block.kind = kind
1800 kind.transform_headline(block)
1801 v.current_block.remove_leading_empty_lines
1802 v.current_line = v.current_block.first_line
1803 end
1804 end
1805
1806 # A markdown headline of level 1.
1807 class LineHeadline1
1808 super LineHeadline
1809
1810 redef fun process(v) do
1811 var line = v.current_line
1812 var lprev = line.prev
1813 if lprev != null then v.current_block.split(lprev)
1814 line.next.clear
1815 var block = v.current_block.split(line.as(not null))
1816 var kind = new BlockHeadline(block)
1817 kind.depth = 1
1818 kind.transform_headline(block)
1819 block.kind = kind
1820 v.current_block.remove_leading_empty_lines
1821 v.current_line = v.current_block.first_line
1822 end
1823 end
1824
1825 # A markdown headline of level 2.
1826 class LineHeadline2
1827 super LineHeadline
1828
1829 redef fun process(v) do
1830 var line = v.current_line
1831 var lprev = line.prev
1832 if lprev != null then v.current_block.split(lprev)
1833 line.next.clear
1834 var block = v.current_block.split(line.as(not null))
1835 var kind = new BlockHeadline(block)
1836 kind.depth = 2
1837 kind.transform_headline(block)
1838 block.kind = kind
1839 v.current_block.remove_leading_empty_lines
1840 v.current_line = v.current_block.first_line
1841 end
1842 end
1843
1844 # A markdown list line.
1845 # Mainly used to factorize code between ordered and unordered lists.
1846 abstract class LineList
1847 super Line
1848
1849 redef fun process(v) do
1850 var line = v.current_line
1851 # go to list end
1852 while line != null do
1853 var t = v.line_kind(line)
1854 if not line.is_empty and (line.prev_empty and line.leading == 0 and
1855 not t isa LineList) then break
1856 line = line.next
1857 end
1858 # build list block
1859 var list: MDBlock
1860 if line != null then
1861 list = v.current_block.split(line.prev.as(not null))
1862 else
1863 list = v.current_block.split(v.current_block.last_line.as(not null))
1864 end
1865 var kind = block_kind(list)
1866 list.kind = kind
1867 list.first_line.prev_empty = false
1868 list.last_line.next_empty = false
1869 list.remove_surrounding_empty_lines
1870 list.first_line.prev_empty = false
1871 list.last_line.next_empty = false
1872 kind.init_block(v)
1873 var block = list.first_block
1874 while block != null do
1875 block.remove_list_indent(v)
1876 v.recurse(block, true)
1877 block = block.next
1878 end
1879 kind.expand_paragraphs(list)
1880 v.current_line = line
1881 end
1882
1883 # Create a new block kind based on this line.
1884 protected fun block_kind(block: MDBlock): BlockList is abstract
1885
1886 # Extract string value from `MDLine`.
1887 protected fun extract_value(line: MDLine): String is abstract
1888 end
1889
1890 # An ordered list line.
1891 class LineOList
1892 super LineList
1893
1894 redef fun block_kind(block) do return new BlockOrderedList(block)
1895
1896 redef fun extract_value(line) do
1897 return line.value.substring_from(line.value.index_of('.') + 2)
1898 end
1899 end
1900
1901 # An unordered list line.
1902 class LineUList
1903 super LineList
1904
1905 redef fun block_kind(block) do return new BlockUnorderedList(block)
1906
1907 redef fun extract_value(line) do
1908 return line.value.substring_from(line.leading + 2)
1909 end
1910 end
1911
1912 # A token represent a character in the markdown input.
1913 # Some tokens have a specific markup behaviour that is handled here.
1914 abstract class Token
1915
1916 # Location of `self` in the original input.
1917 var location: MDLocation
1918
1919 # Position of `self` in input independant from lines.
1920 var pos: Int
1921
1922 # Character found at `pos` in the markdown input.
1923 var char: Char
1924
1925 # Output that token using `MarkdownEmitter::decorator`.
1926 fun emit(v: MarkdownEmitter) do v.decorator.add_char(v, char)
1927 end
1928
1929 # A token without a specific meaning.
1930 class TokenNone
1931 super Token
1932 end
1933
1934 # An emphasis token.
1935 abstract class TokenEm
1936 super Token
1937
1938 redef fun emit(v) do
1939 var tmp = v.push_buffer
1940 var b = v.emit_text_until(v.current_text.as(not null), pos + 1, self)
1941 v.pop_buffer
1942 if b > 0 then
1943 v.decorator.add_em(v, tmp)
1944 v.current_pos = b
1945 else
1946 v.addc char
1947 end
1948 end
1949 end
1950
1951 # An emphasis star token.
1952 class TokenEmStar
1953 super TokenEm
1954 end
1955
1956 # An emphasis underscore token.
1957 class TokenEmUnderscore
1958 super TokenEm
1959 end
1960
1961 # A strong token.
1962 abstract class TokenStrong
1963 super Token
1964
1965 redef fun emit(v) do
1966 var tmp = v.push_buffer
1967 var b = v.emit_text_until(v.current_text.as(not null), pos + 2, self)
1968 v.pop_buffer
1969 if b > 0 then
1970 v.decorator.add_strong(v, tmp)
1971 v.current_pos = b + 1
1972 else
1973 v.addc char
1974 end
1975 end
1976 end
1977
1978 # A strong star token.
1979 class TokenStrongStar
1980 super TokenStrong
1981 end
1982
1983 # A strong underscore token.
1984 class TokenStrongUnderscore
1985 super TokenStrong
1986 end
1987
1988 # A code token.
1989 # This class is mainly used to factorize work between single and double quoted span codes.
1990 abstract class TokenCode
1991 super Token
1992
1993 redef fun emit(v) do
1994 var a = pos + next_pos + 1
1995 var b = v.processor.find_token(v.current_text.as(not null), a, self)
1996 if b > 0 then
1997 v.current_pos = b + next_pos
1998 while a < b and v.current_text[a] == ' ' do a += 1
1999 if a < b then
2000 while v.current_text[b - 1] == ' ' do b -= 1
2001 v.decorator.add_span_code(v, v.current_text.as(not null), a, b)
2002 end
2003 else
2004 v.addc char
2005 end
2006 end
2007
2008 private fun next_pos: Int is abstract
2009 end
2010
2011 # A span code token.
2012 class TokenCodeSingle
2013 super TokenCode
2014
2015 redef fun next_pos do return 0
2016 end
2017
2018 # A doubled span code token.
2019 class TokenCodeDouble
2020 super TokenCode
2021
2022 redef fun next_pos do return 1
2023 end
2024
2025 # A link or image token.
2026 # This class is mainly used to factorize work between images and links.
2027 abstract class TokenLinkOrImage
2028 super Token
2029
2030 # Link adress
2031 var link: nullable Text = null
2032
2033 # Link text
2034 var name: nullable Text = null
2035
2036 # Link title
2037 var comment: nullable Text = null
2038
2039 # Is the link construct an abbreviation?
2040 var is_abbrev = false
2041
2042 redef fun emit(v) do
2043 var tmp = new FlatBuffer
2044 var b = check_link(v, tmp, pos, self)
2045 if b > 0 then
2046 emit_hyper(v)
2047 v.current_pos = b
2048 else
2049 v.addc char
2050 end
2051 end
2052
2053 # Emit the hyperlink as link or image.
2054 private fun emit_hyper(v: MarkdownEmitter) is abstract
2055
2056 # Check if the link is a valid link.
2057 private fun check_link(v: MarkdownEmitter, out: FlatBuffer, start: Int, token: Token): Int do
2058 var md = v.current_text
2059 var pos
2060 if token isa TokenLink then
2061 pos = start + 1
2062 else
2063 pos = start + 2
2064 end
2065 var tmp = new FlatBuffer
2066 pos = md.read_md_link_id(tmp, pos)
2067 if pos < start then return -1
2068 name = tmp
2069 var old_pos = pos
2070 pos += 1
2071 pos = md.skip_spaces(pos)
2072 if pos < start then
2073 var tid = name.write_to_string.to_lower
2074 if v.processor.link_refs.has_key(tid) then
2075 var lr = v.processor.link_refs[tid]
2076 is_abbrev = lr.is_abbrev
2077 link = lr.link
2078 comment = lr.title
2079 pos = old_pos
2080 else
2081 return -1
2082 end
2083 else if md[pos] == '(' then
2084 pos += 1
2085 pos = md.skip_spaces(pos)
2086 if pos < start then return -1
2087 tmp = new FlatBuffer
2088 var use_lt = md[pos] == '<'
2089 if use_lt then
2090 pos = md.read_until(tmp, pos + 1, '>')
2091 else
2092 pos = md.read_md_link(tmp, pos)
2093 end
2094 if pos < start then return -1
2095 if use_lt then pos += 1
2096 link = tmp.write_to_string
2097 if md[pos] == ' ' then
2098 pos = md.skip_spaces(pos)
2099 if pos > start and md[pos] == '"' then
2100 pos += 1
2101 tmp = new FlatBuffer
2102 pos = md.read_until(tmp, pos, '"')
2103 if pos < start then return -1
2104 comment = tmp.write_to_string
2105 pos += 1
2106 pos = md.skip_spaces(pos)
2107 if pos == -1 then return -1
2108 end
2109 end
2110 if pos < start then return -1
2111 if md[pos] != ')' then return -1
2112 else if md[pos] == '[' then
2113 pos += 1
2114 tmp = new FlatBuffer
2115 pos = md.read_raw_until(tmp, pos, ']')
2116 if pos < start then return -1
2117 var id
2118 if tmp.length > 0 then
2119 id = tmp
2120 else
2121 id = name
2122 end
2123 var tid = id.write_to_string.to_lower
2124 if v.processor.link_refs.has_key(tid) then
2125 var lr = v.processor.link_refs[tid]
2126 link = lr.link
2127 comment = lr.title
2128 end
2129 else
2130 var tid = name.write_to_string.replace("\n", " ").to_lower
2131 if v.processor.link_refs.has_key(tid) then
2132 var lr = v.processor.link_refs[tid]
2133 link = lr.link
2134 comment = lr.title
2135 pos = old_pos
2136 else
2137 return -1
2138 end
2139 end
2140 if link == null then return -1
2141 return pos
2142 end
2143 end
2144
2145 # A markdown link token.
2146 class TokenLink
2147 super TokenLinkOrImage
2148
2149 redef fun emit_hyper(v) do
2150 if is_abbrev and comment != null then
2151 v.decorator.add_abbr(v, name.as(not null), comment.as(not null))
2152 else
2153 v.decorator.add_link(v, link.as(not null), name.as(not null), comment)
2154 end
2155 end
2156 end
2157
2158 # A markdown image token.
2159 class TokenImage
2160 super TokenLinkOrImage
2161
2162 redef fun emit_hyper(v) do
2163 v.decorator.add_image(v, link.as(not null), name.as(not null), comment)
2164 end
2165 end
2166
2167 # A HTML/XML token.
2168 class TokenHTML
2169 super Token
2170
2171 redef fun emit(v) do
2172 var tmp = new FlatBuffer
2173 var b = check_html(v, tmp, v.current_text.as(not null), v.current_pos)
2174 if b > 0 then
2175 v.add tmp
2176 v.current_pos = b
2177 else
2178 v.decorator.escape_char(v, char)
2179 end
2180 end
2181
2182 # Is the HTML valid?
2183 # Also take care of link and mailto shortcuts.
2184 private fun check_html(v: MarkdownEmitter, out: FlatBuffer, md: Text, start: Int): Int do
2185 # check for auto links
2186 var tmp = new FlatBuffer
2187 var pos = md.read_until(tmp, start + 1, ':', ' ', '>', '\n')
2188 if pos != -1 and md[pos] == ':' and tmp.is_link_prefix then
2189 pos = md.read_until(tmp, pos, '>')
2190 if pos != -1 then
2191 var link = tmp.write_to_string
2192 v.decorator.add_link(v, link, link, null)
2193 return pos
2194 end
2195 end
2196 # TODO check for mailto
2197 # check for inline html
2198 if start + 2 < md.length then
2199 return md.read_xml(out, start, true)
2200 end
2201 return -1
2202 end
2203 end
2204
2205 # An HTML entity token.
2206 class TokenEntity
2207 super Token
2208
2209 redef fun emit(v) do
2210 var tmp = new FlatBuffer
2211 var b = check_entity(tmp, v.current_text.as(not null), pos)
2212 if b > 0 then
2213 v.add tmp
2214 v.current_pos = b
2215 else
2216 v.decorator.escape_char(v, char)
2217 end
2218 end
2219
2220 # Is the entity valid?
2221 private fun check_entity(out: FlatBuffer, md: Text, start: Int): Int do
2222 var pos = md.read_until(out, start, ';')
2223 if pos < 0 or out.length < 3 then
2224 return -1
2225 end
2226 if out[1] == '#' then
2227 if out[2] == 'x' or out[2] == 'X' then
2228 if out.length < 4 then return -1
2229 for i in [3..out.length[ do
2230 var c = out[i]
2231 if (c < '0' or c > '9') and (c < 'a' and c > 'f') and (c < 'A' and c > 'F') then
2232 return -1
2233 end
2234 end
2235 else
2236 for i in [2..out.length[ do
2237 var c = out[i]
2238 if c < '0' or c > '9' then return -1
2239 end
2240 end
2241 out.add ';'
2242 else
2243 for i in [1..out.length[ do
2244 var c = out[i]
2245 if not c.is_digit and not c.is_letter then return -1
2246 end
2247 out.add ';'
2248 # TODO check entity is valid
2249 # if out.is_entity then
2250 return pos
2251 # else
2252 # return -1
2253 # end
2254 end
2255 return pos
2256 end
2257 end
2258
2259 # A markdown escape token.
2260 class TokenEscape
2261 super Token
2262
2263 redef fun emit(v) do
2264 v.current_pos += 1
2265 v.addc v.current_text[v.current_pos]
2266 end
2267 end
2268
2269 # A markdown strike token.
2270 #
2271 # Extended mode only (see `MarkdownProcessor::ext_mode`)
2272 class TokenStrike
2273 super Token
2274
2275 redef fun emit(v) do
2276 var tmp = v.push_buffer
2277 var b = v.emit_text_until(v.current_text.as(not null), pos + 2, self)
2278 v.pop_buffer
2279 if b > 0 then
2280 v.decorator.add_strike(v, tmp)
2281 v.current_pos = b + 1
2282 else
2283 v.addc char
2284 end
2285 end
2286 end
2287
2288 redef class Text
2289
2290 # Get the position of the next non-space character.
2291 private fun skip_spaces(start: Int): Int do
2292 var pos = start
2293 while pos > -1 and pos < length and (self[pos] == ' ' or self[pos] == '\n') do
2294 pos += 1
2295 end
2296 if pos < length then return pos
2297 return -1
2298 end
2299
2300 # Read `self` until `nend` and append it to the `out` buffer.
2301 # Escape markdown special chars.
2302 private fun read_until(out: FlatBuffer, start: Int, nend: Char...): Int do
2303 var pos = start
2304 while pos < length do
2305 var c = self[pos]
2306 if c == '\\' and pos + 1 < length then
2307 pos = escape(out, self[pos + 1], pos)
2308 else
2309 var end_reached = false
2310 for n in nend do
2311 if c == n then
2312 end_reached = true
2313 break
2314 end
2315 end
2316 if end_reached then break
2317 out.add c
2318 end
2319 pos += 1
2320 end
2321 if pos == length then return -1
2322 return pos
2323 end
2324
2325 # Read `self` as raw text until `nend` and append it to the `out` buffer.
2326 # No escape is made.
2327 private fun read_raw_until(out: FlatBuffer, start: Int, nend: Char...): Int do
2328 var pos = start
2329 while pos < length do
2330 var c = self[pos]
2331 var end_reached = false
2332 for n in nend do
2333 if c == n then
2334 end_reached = true
2335 break
2336 end
2337 end
2338 if end_reached then break
2339 out.add c
2340 pos += 1
2341 end
2342 if pos == length then return -1
2343 return pos
2344 end
2345
2346 # Read `self` as XML until `to` and append it to the `out` buffer.
2347 # Escape HTML special chars.
2348 private fun read_xml_until(out: FlatBuffer, from: Int, to: Char...): Int do
2349 var pos = from
2350 var in_str = false
2351 var str_char: nullable Char = null
2352 while pos < length do
2353 var c = self[pos]
2354 if in_str then
2355 if c == '\\' then
2356 out.add c
2357 pos += 1
2358 if pos < length then
2359 out.add c
2360 pos += 1
2361 end
2362 continue
2363 end
2364 if c == str_char then
2365 in_str = false
2366 out.add c
2367 pos += 1
2368 continue
2369 end
2370 end
2371 if c == '"' or c == '\'' then
2372 in_str = true
2373 str_char = c
2374 end
2375 if not in_str then
2376 var end_reached = false
2377 for n in [0..to.length[ do
2378 if c == to[n] then
2379 end_reached = true
2380 break
2381 end
2382 end
2383 if end_reached then break
2384 end
2385 out.add c
2386 pos += 1
2387 end
2388 if pos == length then return -1
2389 return pos
2390 end
2391
2392 # Read `self` as XML and append it to the `out` buffer.
2393 # Safe mode can be activated to limit reading to valid xml.
2394 private fun read_xml(out: FlatBuffer, start: Int, safe_mode: Bool): Int do
2395 var pos = 0
2396 var is_valid = true
2397 var is_close_tag = false
2398 if start + 1 >= length then return -1
2399 if self[start + 1] == '/' then
2400 is_close_tag = true
2401 pos = start + 2
2402 else if self[start + 1] == '!' then
2403 out.append "<!"
2404 return start + 1
2405 else
2406 is_close_tag = false
2407 pos = start + 1
2408 end
2409 if safe_mode then
2410 var tmp = new FlatBuffer
2411 pos = read_xml_until(tmp, pos, ' ', '/', '>')
2412 if pos == -1 then return -1
2413 var tag = tmp.write_to_string.trim.to_lower
2414 if not tag.is_valid_html_tag then
2415 out.append "&lt;"
2416 pos = -1
2417 else if tag.is_html_unsafe then
2418 is_valid = false
2419 out.append "&lt;"
2420 if is_close_tag then out.add '/'
2421 out.append tmp
2422 else
2423 out.append "<"
2424 if is_close_tag then out.add '/'
2425 out.append tmp
2426 end
2427 else
2428 out.add '<'
2429 if is_close_tag then out.add '/'
2430 pos = read_xml_until(out, pos, ' ', '/', '>')
2431 end
2432 if pos == -1 then return -1
2433 pos = read_xml_until(out, pos, '/', '>')
2434 if pos == -1 then return -1
2435 if self[pos] == '/' then
2436 out.append " /"
2437 pos = self.read_xml_until(out, pos + 1, '>')
2438 if pos == -1 then return -1
2439 end
2440 if self[pos] == '>' then
2441 if is_valid then
2442 out.add '>'
2443 else
2444 out.append "&gt;"
2445 end
2446 return pos
2447 end
2448 return -1
2449 end
2450
2451 # Read a markdown link address and append it to the `out` buffer.
2452 private fun read_md_link(out: FlatBuffer, start: Int): Int do
2453 var pos = start
2454 var counter = 1
2455 while pos < length do
2456 var c = self[pos]
2457 if c == '\\' and pos + 1 < length then
2458 pos = escape(out, self[pos + 1], pos)
2459 else
2460 var end_reached = false
2461 if c == '(' then
2462 counter += 1
2463 else if c == ' ' then
2464 if counter == 1 then end_reached = true
2465 else if c == ')' then
2466 counter -= 1
2467 if counter == 0 then end_reached = true
2468 end
2469 if end_reached then break
2470 out.add c
2471 end
2472 pos += 1
2473 end
2474 if pos == length then return -1
2475 return pos
2476 end
2477
2478 # Read a markdown link text and append it to the `out` buffer.
2479 private fun read_md_link_id(out: FlatBuffer, start: Int): Int do
2480 var pos = start
2481 var counter = 1
2482 while pos < length do
2483 var c = self[pos]
2484 var end_reached = false
2485 if c == '[' then
2486 counter += 1
2487 out.add c
2488 else if c == ']' then
2489 counter -= 1
2490 if counter == 0 then
2491 end_reached = true
2492 else
2493 out.add c
2494 end
2495 else
2496 out.add c
2497 end
2498 if end_reached then break
2499 pos += 1
2500 end
2501 if pos == length then return -1
2502 return pos
2503 end
2504
2505 # Extract the XML tag name from a XML tag.
2506 private fun xml_tag: String do
2507 var tpl = new FlatBuffer
2508 var pos = 1
2509 if pos < length and self[1] == '/' then pos += 1
2510 while pos < length - 1 and (self[pos].is_digit or self[pos].is_letter) do
2511 tpl.add self[pos]
2512 pos += 1
2513 end
2514 return tpl.write_to_string.to_lower
2515 end
2516
2517 private fun is_valid_html_tag: Bool do
2518 if is_empty then return false
2519 for c in self do
2520 if not c.is_alpha then return false
2521 end
2522 return true
2523 end
2524
2525 # Read and escape the markdown contained in `self`.
2526 private fun escape(out: FlatBuffer, c: Char, pos: Int): Int do
2527 if c == '\\' or c == '[' or c == ']' or c == '(' or c == ')' or c == '{' or
2528 c == '}' or c == '#' or c == '"' or c == '\'' or c == '.' or c == '<' or
2529 c == '>' or c == '*' or c == '+' or c == '-' or c == '_' or c == '!' or
2530 c == '`' or c == '~' or c == '^' then
2531 out.add c
2532 return pos + 1
2533 end
2534 out.add '\\'
2535 return pos
2536 end
2537
2538 # Extract string found at end of fence opening.
2539 private fun meta_from_fence: nullable Text do
2540 for i in [0..chars.length[ do
2541 var c = chars[i]
2542 if c != ' ' and c != '`' and c != '~' then
2543 return substring_from(i).trim
2544 end
2545 end
2546 return null
2547 end
2548
2549 # Is `self` an unsafe HTML element?
2550 private fun is_html_unsafe: Bool do return html_unsafe_tags.has(self.write_to_string)
2551
2552 # Is `self` a HRML block element?
2553 private fun is_html_block: Bool do return html_block_tags.has(self.write_to_string)
2554
2555 # Is `self` a link prefix?
2556 private fun is_link_prefix: Bool do return html_link_prefixes.has(self.write_to_string)
2557
2558 private fun html_unsafe_tags: Array[String] do return once ["applet", "head", "body", "frame", "frameset", "iframe", "script", "object"]
2559
2560 private fun html_block_tags: Array[String] do return once ["address", "article", "aside", "audio", "blockquote", "canvas", "dd", "div", "dl", "fieldset", "figcaption", "figure", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "header", "hgroup", "hr", "noscript", "ol", "output", "p", "pre", "section", "table", "tfoot", "ul", "video"]
2561
2562 private fun html_link_prefixes: Array[String] do return once ["http", "https", "ftp", "ftps"]
2563 end
2564
2565 redef class String
2566
2567 # Parse `self` as markdown and return the HTML representation
2568 #.
2569 # var md = "**Hello World!**"
2570 # var html = md.md_to_html
2571 # assert html == "<p><strong>Hello World!</strong></p>\n"
2572 fun md_to_html: Writable do
2573 var processor = new MarkdownProcessor
2574 return processor.process(self)
2575 end
2576 end