deno-gfm
deno-gfm copied to clipboard
/x does not render text as bold if followed by a hard line-break
It's entirely possible this bug is upstream.
Repro
The markup
- **Breaking: Changed how clients are instantiated with an API (#0)**\
The API object must now be passed in as an api property on an object.
How GitHub renders it
-
Breaking: Changed how clients are instantiated with an API (#0)
The API object must now be passed in as an api property on an object.
And on deno.land/x
Interestingly it seems to only affect lines that end with a non-alphanumeric character, but I haven't tested further.
This is indeed caused by upstream, since dotland uses marked
. You can see how the text rendered in the official demo:
For posterity, the deno.land page is https://deno.land/x/[email protected]/README.tpl.md.
@hashrock does remark handle this case better?
Yes it does
@hashrock, I think this can be closed. When I go to https://deno.land/x/[email protected]/README.tpl.md?source=#version-020, I see the problematic text now rendered correctly.
Agreed. It’s been a while since I had this problem, to be honest I forgot this issue was still open in the first place!