arctrong

Results 4 issues of arctrong

**To Reproduce** ``` private static String generateHtml(String mdText) { MutableDataSet options = new MutableDataSet(); options.set(Parser.EXTENSIONS, Arrays.asList(TocExtension.create())); Parser parser = Parser.builder(options).build(); HtmlRenderer renderer = HtmlRenderer.builder(options).build(); Node document = parser.parse(mdText); return renderer.render(document);...

## Issue description Needs `file://` prefix when inserting an image. ### Markdown to reproduce The following doesn't work: ``` ![](pict/myimage.png) ``` The following works: ``` ![](file://pict/myimage.png) ``` ### Impact Python-markdown...

https://www.thymeleaf.org/doc/articles/standarddialect5minutes.html After "2.5. Fragment expressions" find "Fragment expressions can have arguments:". The colon means something must follow but there's nothing there.

needs triage

In Java I can create a `Hello.java`, compile it with `javac Hello.java`, and execute it with `java Hello`. On the Scala "Getting Stated" page such scenario for Scala is not...