# This file is part of NIT ( http://www.nitlanguage.org ). # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Handle markdown formatting in Nit comments. module doc_down import markdown import highlight private import parser_util redef class MDoc # Synopsis HTML escaped. var synopsis: String is lazy do return content.first.html_escape # Comment without synopsis HTML escaped var comment: String is lazy do var lines = content.to_a if not lines.is_empty then lines.shift return content.join("\n").html_escape end # Full comment HTML escaped. var documentation: String is lazy do return content.join("\n").html_escape private var markdown_proc: MarkdownProcessor is lazy do return original_mentity.model.nitdoc_md_processor end private var inline_proc: MarkdownProcessor is lazy do return original_mentity.model.nitdoc_inline_processor end # Renders the synopsis as a HTML comment block. var html_synopsis: Writable is lazy do var res = new Template var syn = inline_proc.process(content.first) res.add "{syn}" return res end # Renders the comment without the synopsis as a HTML comment block. var html_comment: Writable is lazy do var lines = content.to_a if not lines.is_empty then lines.shift return lines_to_html(lines) end # Renders the synopsis and the comment as a HTML comment block. var html_documentation: Writable is lazy do return lines_to_html(content.to_a) # Renders markdown line as a HTML comment block. private fun lines_to_html(lines: Array[String]): Writable do var res = new Template res.add "
" # do not use DocUnit as synopsys if not lines.is_empty then if not lines.first.has_prefix(" ") and not lines.first.has_prefix("\t") then # parse synopsys var syn = inline_proc.process(lines.shift) res.add "

{syn}

" end end # check for annotations for i in [0 .. lines.length[ do var line = lines[i] if line.to_upper.has_prefix("ENSURE") or line.to_upper.has_prefix("REQUIRE") then var html = inline_proc.process(line) lines[i] = "

{html}

" else if line.to_upper.has_prefix("TODO") or line.to_upper.has_prefix("FIXME") then var html = inline_proc.process(line) lines[i] = "

{html}

" end end # add other lines res.add markdown_proc.process(lines.join("\n")) res.add "
" return res end end private class NitdocDecorator super HTMLDecorator var toolcontext = new ToolContext redef fun add_code(v, block) do var meta = block.meta or else "nit" # Do not try to highlight non-nit code. if meta != "nit" and meta != "nitish" then v.add "
"
			v.emit_in block
			v.add "
\n" return end # Try to parse code var code = block.raw_content var ast = toolcontext.parse_something(code) if ast isa AError then v.add "
"
			v.emit_in block
			v.add "
\n" return end v.add "
"
		var hl = new HighlightVisitor
		hl.line_id_prefix = ""
		hl.enter_visit(ast)
		v.add(hl.html)
		v.add "
\n" end redef fun add_span_code(v, text, from, to) do # Try to parse it var code = code_from_text(text, from, to) var ast = toolcontext.parse_something(code) if ast isa AError then v.add "" append_code(v, text, from, to) else v.add "" var hl = new HighlightVisitor hl.line_id_prefix = "" hl.enter_visit(ast) v.add(hl.html) end v.add "" end fun code_from_text(buffer: Text, from, to: Int): String do var out = new FlatBuffer for i in [from..to[ do out.add buffer[i] return out.write_to_string end end # Decorator for span elements. # # Because inline comments can appear as span elements, # InlineDecorator do not decorate things like paragraphs or headers. private class InlineDecorator super NitdocDecorator redef fun add_paragraph(v, block) do v.emit_in block end redef fun add_headline(v, block) do v.emit_in block end redef fun add_code(v, block) do # Try to parse code var ast = toolcontext.parse_something(block.block.text.to_s) if ast isa AError then v.add "" v.emit_in block v.add "" return end v.add "" var hl = new HighlightVisitor hl.enter_visit(ast) v.add(hl.html) v.add "" end end redef class Model # Get a markdown processor for Nitdoc comments. var nitdoc_md_processor: MarkdownProcessor is lazy do var proc = new MarkdownProcessor proc.emitter.decorator = new NitdocDecorator return proc end # Get a markdown inline processor for Nitdoc comments. # # This processor is specificaly designed to inlinable doc elements like synopsys. var nitdoc_inline_processor: MarkdownProcessor is lazy do var proc = new MarkdownProcessor proc.emitter.decorator = new InlineDecorator return proc end end