Can be installed locally on any system with Python: https://github.com/tabatkins/bikeshed/
Or can be used remotely, via web form or curl: https://api.csswg.org/bikeshed/
Running `bikeshed template > index.bs` outputs an empty doc with basic necessities set up for you.
TODO: Get together some good example documents showing off features in situ.
<h2 id="foo">Some Section</h2>
<p>Here's some information:</p>
<ol>
<li>One
<li>Two
<ul>
<li>Two subpoint
<li>and another
</ul>
<li>Three
</ol>
Some Section {#foo}
===================
Here's some information:
1. One
2. Two
* Two subpoint
* and another
3. Three
Markup Shorthands: markdown yes
<section>
<p>some text
<div class=example>
<pre>function foo() {
return 4;
}</pre>
</div>
</section>
<section>
<p>some text
<div class=example>
<pre>
function foo() {
return 4;
}
</pre>
</div>
</section>
class=lang-FOO
or highlight=FOO
, automatically syntax-highlights. (Using the substantial library of highlighters supported by Pygments.) Preserves original markup too, so linking + highlighting works together.
<div class=example>
<pre>
<p>some example HTML
<ul>
<li>And some more
<li>and more
</ul>
</pre>
</div>
<div class=example>
<xmp>
<p>some example HTML
<ul>
<li>And some more
<li>and more
</ul>
</xmp>
</div>
<pre>
(with properly-escaped content) in the output document.
If in a GitHub repo, or if you have Repository
metadata set up, can use "remote issues":
<p>Some text that has an issue.
Issue(36):
<p>Following text
Like JSON.org diagrams, useful for indicating syntax/grammars
<pre class=railroad>
T: \
Choice:
N: not newline or hex digit
Seq:
Plus:
N: hex digit
C: 1-6 times
Opt: skip
N: whitespace
</pre>