Compare commits
2 Commits
8d60b1da46
...
d59ef1c589
Author | SHA1 | Date |
---|---|---|
|
d59ef1c589 | |
|
133e625555 |
|
@ -12,6 +12,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"markdown-it": "^12.0.6",
|
"markdown-it": "^12.0.6",
|
||||||
"markdown-it-anchor": "^7.1.0",
|
"markdown-it-anchor": "^7.1.0",
|
||||||
|
"markdown-it-attrs": "^4.0.0",
|
||||||
"markdown-it-title": "^3.0.0",
|
"markdown-it-title": "^3.0.0",
|
||||||
"memory-cache": "^0.2.0"
|
"memory-cache": "^0.2.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ const mcache = require('memory-cache')
|
||||||
const md = require('markdown-it')({ typographer: true })
|
const md = require('markdown-it')({ typographer: true })
|
||||||
md.use(require('markdown-it-anchor'), {permalink: true, level: 2, permalinkBefore: true, permalinkSymbol: "§"})
|
md.use(require('markdown-it-anchor'), {permalink: true, level: 2, permalinkBefore: true, permalinkSymbol: "§"})
|
||||||
md.use(require('markdown-it-title'), 0)
|
md.use(require('markdown-it-title'), 0)
|
||||||
|
md.use(require('markdown-it-attrs'))
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
|
||||||
|
|
|
@ -237,6 +237,11 @@ td:last-child {
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.die {
|
||||||
|
width: 1em;
|
||||||
|
height: 2ex;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-resolution: 200dpi) {
|
@media screen and (min-resolution: 200dpi) {
|
||||||
body {
|
body {
|
||||||
font-size: 5vw;
|
font-size: 5vw;
|
||||||
|
|
Loading…
Reference in New Issue