File: inline.text

package info (click to toggle)
markdown-mode 2.3%2B154-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,052 kB
  • sloc: lisp: 13,081; makefile: 69; sh: 16
file content (30 lines) | stat: -rw-r--r-- 960 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
This is *italic.*
This is **bold.**
This is `code`.
This is ``code`containing`backticks``.

Seven backquotes in a row ``````` do not constitute a code span.

If backquotes begin or end a code span, you have to use spaces,
like `` `this` ``.  Markdown removes any leading and trailing
whitespace. Only the space a the end is necessary,
like ```this` ``.

A backslash as the final character in an inline code fragment does
*not* escape the backquote.  That is, `C-h C-\` will render as

    <code>C-h C-\</code>

However, we can escape what would otherwise be a leading backquote,
as in \`foo\` or \`bar\`.

But this will be a code span crossing lines: \`foo` or
bar ` containing only "or bar".

This should result in three backquotes in a code span `` ``` `` and
they should even match across across lines `` ```
``, like so.  However, backquotes should not `` ``` match

across two blocks``.

Links have several components: [text](http://www.w3.org/ "title").