Open martinklepsch opened 3 years ago
@martinklepsch It seems the double dash gets converted into a special character:
borkdude@MBP2019 /tmp $ bb -e '(int \–)'
8211
borkdude@MBP2019 /tmp $ bb -e '(int \-)'
45
``
This is probably an issue in the underlying markdown-clj library. Ive noticed it also double layers indented list item markdown. ie.
- foo
- bar
- baz
renders incorrectly (as a nested list), while
- foo
- bar
- baz
renders correctly. (first one is indented one space). I'll test both these on the upstream and file these bugs there, if so.
This
breaks the link by omitting one of the dashes
This occurs regardless of whether the dashes are in the
#anchor
portion of the URL or the path itself.Interestingly using
markdown-clj
I get a different result (v.1.10.0 as inproject.clj
):cc @yogthos