Incorrect formatting of Markdown source in code span #33333
Unanswered
0cjs
asked this question in
Other Feature Feedback, Questions, & Ideas
Replies: 2 comments 2 replies
-
|
I notice that this has been sitting around for three weeks now without a response. Is there some other place I should be posting this? |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
It's been over a month since I reported this bug. Have GitHub's developers even been informed about it? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When rendering a Markdown file from a repo in the web interface, GitHub normally handles code spans that cross lines without problems. For example,
will render "echo hello" as a code span:
echo hello.However, it seems that if the continuation line starts with the shell redirect character,
>, GitHub interprets this as the code span no longer being a code span and instead the first character of the continuation line is interpreted as markup for a block quote. E.g.:will render "echo >somefile hello" not as
echo >somefile hellobut as "`echo" followed by a block-quoted "somefile hello`" on the next line.You can see an example of this here, in the sixth paragraph (second indented bullet point) after the "Build Cache" heading.
Beta Was this translation helpful? Give feedback.
All reactions