Finally writing the changelog (at least for now)
This commit is contained in:
parent
55657a792b
commit
9a79b95337
@ -1 +1,13 @@
|
|||||||
TODO: Write a changelog
|
<div class="changelog">
|
||||||
|
<dl>
|
||||||
|
<dt>Pending release</dt>
|
||||||
|
<dd>Freshened up design</dd>
|
||||||
|
<dd>Added a changelog</dd>
|
||||||
|
<dd>Added documentation</dd>
|
||||||
|
<dd>All parsing and rendering happens client-side</dd>
|
||||||
|
<dd>Added Download link (not available in older browsers)</dd>
|
||||||
|
<dd>Added display of regular expression flags (ignore, global, multiline)</dd>
|
||||||
|
<dd>Added indicator of quantifier greedy-ness</dd>
|
||||||
|
<dd>Various improvements to parsing of regular expression</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
@ -101,6 +101,23 @@ header {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.changelog {
|
||||||
|
background-color: $tan;
|
||||||
|
padding: rhythm(1/2);
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
&::before {
|
||||||
|
content: '\00BB';
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: rhythm(1/2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#content {
|
#content {
|
||||||
padding: rhythm(1);
|
padding: rhythm(1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user