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