-
Currently lychee does not check for bad "link references" (not sure if this is the proper name), e.g.
```
This is a [link text][link-ref].
[link-ref-with-typo]: https://nyan.cat
```
It woul…
-
Hi @Byron!
An issue was opened in the mdbook-i18n-helpers crate about how we treat backslashes in the translations: https://github.com/google/mdbook-i18n-helpers/issues/105.
As you might recall,…
-
Currently udata parses markdown according to the [the "original" spec by John Gruber](https://daringfireball.net/projects/markdown/)
This implies some ambiguities, as pointed out [in the GFM spec h…
-
**Enhancement / feature description:**
For an improved compatibility with Github and a larger feature set on the markdown language, it would be great if MindForger could support advanced styling feat…
-
It seems that the spec (0.29) allows for arbitrary whitespace including newlines inside [link label](https://spec.commonmark.org/0.29/#link-label)s, though the reference parser [doesn't accept it](htt…
-
Current spec says:
> If a string of lines *Ls* constitute a [block
quote](#block-quotes) with contents *Bs*, then the result of deleting
the initial [block quote marker] from one or
…
-
Hey!
Let's assume this test:
```rust
#[test]
fn foobar() {
let original = r##"https://foo.bar/_/A and https://baz.qux/_/B"##;
let expected = r##"https://foo.bar/_/A and https://baz.q…
-
Currently, it can be a bit confusing to understand in which order rules will be applied, and how they are "inter-connected"
For example, if you have a plugin like:
```
pub fn add(md: &mut Markd…
-
Implement [Pandoc](https://pandoc.org/MANUAL.html#pandocs-markdown) Markdown flavor. It has a number of useful features like footnotes, citations and math. It will require enhancements both on editor …
-
GoldMark has a nice feature: you can define your own renderers for specific items, such as links and headings.
See e.g. how Hugo uses this: https://gist.github.com/killbus/f47efbd13d96b437b9d218334…