Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Post History

#20: Post edited by user avatar Olin Lathrop‭ · 2020-07-15T20:25:21Z (over 4 years ago)
#19: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T15:21:33Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> src="URL"&gt;
  • Inserts the image at <i>URL</i> in-line.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3><a href="https://electrical.codidact.com/help/chars">Special characters</a></h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. Click on the heading for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>img</b> src="URL"&gt;
  • Inserts the image at <i>URL</i> in-line.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3><a href="https://electrical.codidact.com/help/chars">Special characters</a></h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. Click on the heading for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#18: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T15:20:40Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3><a href="https://electrical.codidact.com/help/chars">Special characters</a></h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. Click on the heading for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> src="URL"&gt;
  • Inserts the image at <i>URL</i> in-line.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3><a href="https://electrical.codidact.com/help/chars">Special characters</a></h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. Click on the heading for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#17: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T15:12:39Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3>Special characters</h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. See <a href="https://electrical.codidact.com/help/chars">here</a> for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3><a href="https://electrical.codidact.com/help/chars">Special characters</a></h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. Click on the heading for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#16: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T15:06:50Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h3>Special characters</h3>
  • The HTML <b>&amp;xxx;</b> special characters are available. See <a href="https://electrical.codidact.com/help/chars">here</a> for more information.
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#15: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T14:01:25Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it to show that it is crossed out or deleted:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#14: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T14:00:01Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text in a separate block, visually set off from the surrounding text. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#13: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:58:21Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes the text in bold --> <b>b-text</b>, <strong>strong-text</strong>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes the text in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#12: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:55:40Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code to keep it from getting wrapped and formatted to oblivion:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#11: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:54:28Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh = sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh := sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI (list item) tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript --> P = I<sup>2</sup>R
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript --> h<sub>FE</sub> = 50
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#10: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:50:47Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere:
  • In-line code text --> <code>In-line code text</code>
  • In-line pre text --> <pre>In line pre text</pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;
  • Writes the text in-line in fixed space font:
  • In-line code text --> <code>In-line code text</code> <-- In-line code text.
  • <li>&lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes a block of text in fixed space font. Use this for source code:
  • <pre>
  • begin
  • level := TankLevel(sludge.tank);
  • thresh = sludge.thresh_high;
  • if EpaInspector then begin
  • thresh := sludge.thresh_legal;
  • end;
  • if level > thresh then begin
  • PumpOn (sludge);
  • end;
  • </pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#9: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:43:02Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere:
  • In-line code text --> <code>In-line code text</code>
  • In-line pre text --> <pre>In line pre text</pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote>
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere:
  • In-line code text --> <code>In-line code text</code>
  • In-line pre text --> <pre>In line pre text</pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#8: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:42:30Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i> <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i>, <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate:
  • <h1>Heading 1</h1><br>
  • <h2>Heading 2</h1><br>
  • <h3>Heading 3</h1><br>
  • <h4>Heading 4</h1><br>
  • <h5>Heading 5</h1><br>
  • <h6>Heading 6</h1><br>
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere:
  • <blockquote>Four score and seven years ago, not much of any significance happened. This is more rambling to show how long text is wrapped. Blah, blah, blah.</blockquote.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out:
  • <strike>strike text</strike><br>
  • <del>del text</del>
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere:
  • In-line code text --> <code>In-line code text</code>
  • In-line pre text --> <pre>In line pre text</pre>
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#7: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:36:07Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold --> <b>text</b>
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics --> <i>i-text</i> <em>em-text</em>
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#6: Post edited by user avatar Olin Lathrop‭ · 2020-06-11T13:32:29Z (over 4 years ago)
#5: Post edited by user avatar Olin Lathrop‭ · 2020-06-10T22:05:48Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#4: Post edited by user avatar Olin Lathrop‭ · 2020-06-10T22:05:14Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#3: Post edited by user avatar Olin Lathrop‭ · 2020-06-10T22:04:14Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to allow you some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to provide some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#2: Post edited by user avatar Olin Lathrop‭ · 2020-06-09T22:57:13Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to allow you some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text>&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to allow you some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
#1: Post edited by user avatar Olin Lathrop‭ · 2020-06-09T13:59:55Z (over 4 years ago)
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to allow you some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text>&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is ~~text~~
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>
  • The most basic formatting is leaving a blank line to start a new paragraph. For short posts containing only words, this is usually all you need. However, more advanced formatting is available. Formatting can be done directly by adding HTML elements, and/or with <a href="https://www.markdownguide.org/cheat-sheet/">Markdown</a>.
  • <!-- Hey folks - I added a link to a markdown cheat sheet above - there's research showing that users find Markdown easier to use than HTML, so it's probably useful to have. Obviously that doesn't apply to everyone, but I think it's worth having some help for both methods. Feel free to remove if you disagree, of course -- Art -->
  • <h1>HTML</h1>
  • The pages you see are ultimately in HTML. Arbitrary HTML can't be allowed because that could break lots of things. However, a certain subset is specifically allowed to allow you some control over formatting, without giving you the capability to break the larger page.
  • <h3>tags</h3>
  • HTML tags start with <b>&lt;name&gt;</b> and usually end with <b>&lt;/name&gt;</b>. Whatever you put between the starting and ending part gets effected by that tag.
  • The allowed tags are:<ul>
  • <li>&lt;<b>a</b> href="URL"&gt;text>&lt;<b>/a</b>&gt;
  • Makes <i>text</i> a clickable link. Clicking goes to <i>URL</i>.
  • <li>&lt;<b>p</b>&gt;
  • Starts a new paragraph. The ending &lt;/p&gt; is allowed but usually not required.
  • <li>&lt;<b>b</b>&gt;text&lt;<b>/b</b>&gt;, &lt;<b>strong</b>&gt;text&lt;<b>/strong</b>&gt;
  • Writes <i>text</i> in bold.
  • <li>&lt;<b>i</b>&gt;text&lt;<b>/i</b>&gt;,
  • &lt;<b>em</b>&gt;text&lt;<b>/em</b>&gt;
  • Writes <i>text</i> in italics.
  • <li>&lt;<b>hr</b>&gt;
  • Draws a horizontal line.
  • <li>&lt;<b>h1</b>&gt;text&lt;<b>/h1</b>&gt; ...
  • &lt;<b>h6</b>&gt;text&lt;<b>/h6</b>&gt;
  • Headings, with weight 1 to 6. Weight 1 is a top level heading, with the remaining numbers successively more subordinate.
  • <li>&lt;<b>blockquote</b>&gt;text&lt;<b>/blockquote</b>&gt;
  • Shows the text with a blank line before and after, and indented on both sides. Use this to show text that you are quoting from elsewhere.
  • <li>&lt;<b>img</b> href="URL"&gt;text&lt;<b>/img</b>&gt;
  • Makes <i>text</i> a clickable link to an image. Clicking displays the image that is at <i>URL</i>.
  • <li>&lt;<b>strike</b>&gt;text&lt;<b>/strike</b>&gt;,
  • &lt;<b>del</b>&gt;text&lt;<b>/del</b>&gt;
  • Writes text with a line thru it. The text looks crossed out.
  • <li>&lt;<b>code</b>&gt;text&lt;<b>/code</b>&gt;,
  • &lt;<b>pre</b>&gt;text&lt;<b>/pre</b>&gt;
  • Writes text in fixed-space font, with all spacing and line breaks as is. Use this when showing source code or preformatted text, like a table copied from elsewhere.
  • <li>&lt;<b>br</b>&gt;<b>
  • Inserts a "break" in flowed text. The following text starts on a new line.
  • <li>&lt;<b>ol</b>&gt; ... &lt;<b>/ol</b>&gt;,
  • &lt;<b>ul</b>&gt; ... &lt;<b>/ul</b>&gt;
  • Lists. OL (ordered list) creates a numbered list. Each entry will have a successive number. UL (unordered list) just puts a bullet in front of each list entry.
  • Add list entries with the LI tag, below.
  • <li>&lt;<b>li</b>&gt;text
  • Starts a new entry in the current list. This works for both numbered (OL) and unnumbered (UL) lists.
  • <li>&lt;<b>sup</b>&gt;text&lt;<b>/sup</b>&gt;
  • Writes <i>text</i> as a superscript.
  • <li>&lt;<b>sub</b>&gt;text&lt;<b>/sub</b>&gt;
  • Writes <i>text</i> as a subscript.
  • <li>&lt;<b>section</b>&gt;text&lt;<b>/section</b>&gt;
  • Defines a separate section of the document.
  • </ul>
  • <h1>Markdown</h1>
  • This site also supports the markdown language <a href="https://commonmark.org/">CommonMark</a>. This is intended to be a little easier to type than HTML, but be aware that some simple text sequences can have effects on formatting.
  • Briefly, the markdown language elements are:<ul>
  • <li>Bold: **text** is <b>text</b>
  • <li>Italic: *text* or _text_ is <i>text</i>
  • <li>Code/monospace: `text` is <code>text</code>
  • <li>Links: [name](url) cause <i>name</i> to be a link to <i>url</i>
  • <li>Strikethrough: ~~text~~ is <strike>text</strike>
  • <li>Blockquotes: > text is
  • > text
  • <li>Bullets: start your lines with * or -
  • <li>Numbered lists: start your lines with 1., 2., etc.
  • <li>Headers: start your line with # for H1, ## for H2, etc. Must have a space between # and the start of your text.
  • <li>Horizontal line: --- on a line on its own.
  • <li>footnotes: use [^1], [^2], etc., inline, and add [^1]: words to the bottom of your post for automatic formatting and linking.
  • </ul>