rebuild docs

This commit is contained in:
atomiks
2018-02-28 18:26:49 +10:00
parent d41e267d12
commit a133e35a5f
9 changed files with 56 additions and 885 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules/
.cache/
.DS_Store
dist/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -182,7 +182,7 @@ in any specification.</span></p>
</code></pre>
<h4 data-type="CSS">CSS</h4><pre><code class="lang-css">@keyframes donut-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg);}
100% { transform: rotate(360deg); }
}
.donut {
display: inline-block;

View File

@ -68,8 +68,7 @@ for (const snippetFile of fs.readdirSync(SNIPPETS_PATH)) {
}
// doctype declaration gets stripped, add it back in
const html = `
<!DOCTYPE html>
const html = `<!DOCTYPE html>
${pretty(document.documentElement.outerHTML, { ocd: true })}
`