haxe-markdown icon indicating copy to clipboard operation
haxe-markdown copied to clipboard

A Markdown parser in Haxe.

Results 8 haxe-markdown issues
Sort by recently updated
recently updated
newest added

```haxe Markdown.markdownToHtml("`||`"); ``` results in: ```html `` ``` See https://api.haxe.org/haxe/macro/Binop.html#OpBoolOr.

Support code blocks fenced with triple tildes (same as triple backticks, but more symmetrical looking). [Triple tildes are standard commonmark](https://spec.commonmark.org/0.29/#fenced-code-blocks), and are supported by pandoc, github markdown, and other implementations.

Hello! I was trying out a few things with the markdown parser, and noticed that it doesn't seem to handle nested lists. I don't think nested lists are actually in...

The `InlineParser.unescape` method seems to be called multiple times on the same text, resulting in some escaping issues. In particular, to output two backslashes in a row, you need to...

I've run into some unexpected behavior while parsing markdown documents with inline HTML. Take this markdown for example: ``` # Test test test test ``` When parsed, this is what...

This renders as a table while it shouldn't: `a | b | c` (see HaxeFoundation/haxelib#320)

http://php.net/manual/en/function.mail.php

Moved from https://github.com/dpeek/dox/issues/124 I believe this markup should show a bullet: ``` haxe /** * Some comment * - Some bullet */ ``` But instead it renders like this: `Some...