Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specification for info strings with inline code #750

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions spec.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5881,6 +5881,10 @@ following ways:
or ends with backtick characters, which must be separated by
whitespace from the opening or closing backtick strings.

Inline code spans may optionally be directly preceded by an [info string]
that is wrapped in single colon characters (`` :info:`code` ``). This
info string may not contain backtick characters.

This is a simple code span:

```````````````````````````````` example
Expand Down Expand Up @@ -6094,6 +6098,26 @@ closing backtick strings to be equal in length:
<p>`foo<code>bar</code></p>
````````````````````````````````

An [info string] can be wrapped in colon (`:`) characters and given
directly before the inline code. This spec does not mandate what to
do with the info string, but the first word is typically used to specify
the language. In HTML output, this is typically indicated by adding a
class to the `code` element consisting of `language-` followed by the
language name.

```````````````````````````````` example
:python:`foo(x, a=100)`
.
<p><code class="language-python">foo(x, a=100)</code></p>
````````````````````````````````

The info string may not be separated from the opening backtick.

```````````````````````````````` example
:c: `printf("foo");`
.
<p>:c: <code class="language-c">printf("foo");</code></p>
````````````````````````````````

## Emphasis and strong emphasis

Expand Down