You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concerns the Markdown to HTML test for fixture markdown_documentation_syntax.md
Source:
Markdown provides backslash escapes for the following characters:
\ backslash` backtick* asterisk_ underscore{} curly braces[] square brackets() parentheses# hash mark+ plus sign- minus sign (hyphen). dot! exclamation mark
Corresponding HTML file:
<pre><code>\ backslash
` backtick
* asterisk
_ underscore
{} curly braces
[] square brackets
() parentheses
# hash mark
+ plus sign
- minus sign (hyphen)
. dot
! exclamation mark
</code></pre>
The tab \t between + and plus are expected to be replaced with spaces. We should look at other parsers' behaviors, and probably modifiy the test to expect the tabs to be left untouched.
The text was updated successfully, but these errors were encountered:
A use case for this is when documenting Makefiles, since the difference between a tab and a space means the difference between a working and non-working Makefile.
Ironically, it seems that GitHub's parser is replacing your tabs with spaces in the above example, so I was having a hard time following the description at first. 😆
Concerns the Markdown to HTML test for fixture
markdown_documentation_syntax.md
Source:
Corresponding HTML file:
The tab
\t
between+
andplus
are expected to be replaced with spaces. We should look at other parsers' behaviors, and probably modifiy the test to expect the tabs to be left untouched.The text was updated successfully, but these errors were encountered: