Notice the difference on line 5, there are two underscores in the markdown source that appear to be stripped at some point during the HTML rendering process. Github's render of the file also shows the source = argv[ part in italics, so it looks like there might be a more widespread problem with handling underscores in markdown things that use <pre> and/or <code> for code blocks.
(edit: I just looked at the HTML source of the website instead of the inspector, and found that your markdown renderer indeed sticks an <em> in there, at the same place that Github's does: argv.<em>source = argv['</em>'].slice(0);)
I would be glad to help isolate and fix this, but I haven't been able to find the environment used to actually render these docs for the website. Maybe consider adding that to this repo? It would be nice for people to be able to contribute formatting fixes, and in general be able to see the results of their contributions locally.
The custom runner example under Programmatic API fails when copy-pasted from the website:
Output:
But it works when copying from markdown source directly:
Notice the difference on line 5, there are two underscores in the markdown source that appear to be stripped at some point during the HTML rendering process. Github's render of the file also shows the
source = argv[
part in italics, so it looks like there might be a more widespread problem with handling underscores in markdown things that use<pre>
and/or<code>
for code blocks.(edit: I just looked at the HTML source of the website instead of the inspector, and found that your markdown renderer indeed sticks an
<em>
in there, at the same place that Github's does:argv.<em>source = argv['</em>'].slice(0);
)I would be glad to help isolate and fix this, but I haven't been able to find the environment used to actually render these docs for the website. Maybe consider adding that to this repo? It would be nice for people to be able to contribute formatting fixes, and in general be able to see the results of their contributions locally.