Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Explained the "language-WORD" CSS styling used with fenced code blocks in Markdown within md_rules. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
06a3361dc08754ae251ebe73cfd5a695 |
User & Date: | wyoung 2020-01-11 01:00:50.445 |
Context
2020-01-12
| ||
20:45 | Fossil-defined SQL functions used inside of views for full-text-serch much be tagged using SQLITE_INNOCUOUS. ... (check-in: 9826bd00 user: drh tags: trunk) | |
2020-01-11
| ||
01:00 | Explained the "language-WORD" CSS styling used with fenced code blocks in Markdown within md_rules. ... (check-in: 06a3361d user: wyoung tags: trunk) | |
2020-01-09
| ||
23:02 | Fix build errors when using MSVC version that has no 'stdint.h' ... (check-in: c6ae8584 user: ashepilko tags: trunk) | |
Changes
Changes to src/markdown.md.
︙ | ︙ | |||
98 99 100 101 102 103 104 | > For inline text, you can either use \``backticks`\` or the HTML > `<code>` tag. > > For blocks of text or code: > > 1. Indent the text using a tab character or at least four spaces. > 2. Precede the block with an HTML `<pre>` tag and follow it with `</pre>`. | | | > > > > > > | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | > For inline text, you can either use \``backticks`\` or the HTML > `<code>` tag. > > For blocks of text or code: > > 1. Indent the text using a tab character or at least four spaces. > 2. Precede the block with an HTML `<pre>` tag and follow it with `</pre>`. > 3. Surround the block by <tt>\`\`\`</tt> (three or more) or <tt>\~\~\~</tt> either at the > left margin or indented no more than three spaces. The first word > on that same line (if any) is used in a “`language-WORD`” CSS style in > the HTML rendering of that code block and is intended for use by > code syntax highlighters. Thus <tt>\`\`\`c</tt> would mark a block of code > in the C programming language. Text to be rendered inside the code block > should therefore start on the next line, not be cuddled up with the > backticks or tildes. > With the standard skins, verbatim text is rendered in a fixed-width font, > but that is purely a presentation matter, controlled by the skin’s CSS. ## Tables ## > |
︙ | ︙ |