Compare commits
No commits in common. "d59ef1c58938f388943607fac24ed7d7dd979048" and "8d60b1da466689d249bdfc366dad7cfdb61fb3d2" have entirely different histories.
d59ef1c589
...
8d60b1da46
|
@ -12,7 +12,6 @@
|
||||||
"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,7 +3,6 @@ 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,11 +237,6 @@ 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