mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
Compare commits
No commits in common. "44cbd032dab9b6b713d2146af666fcc9b310d41b" and "313974dc7deec978615796b1a041be1ebae28c8c" have entirely different histories.
44cbd032da
...
313974dc7d
4 changed files with 4 additions and 16 deletions
|
|
@ -54,11 +54,7 @@ set commentstring=//%s
|
||||||
" remember cursor position
|
" remember cursor position
|
||||||
augroup vimrc-editing-remember-cursor-position
|
augroup vimrc-editing-remember-cursor-position
|
||||||
autocmd!
|
autocmd!
|
||||||
autocmd BufReadPost *
|
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exec "normal! g`\"" | endif
|
||||||
\ if line("'\"") > 1 && line("'\"") <= line("$")
|
|
||||||
\| exec "normal! g`\""
|
|
||||||
\|endif
|
|
||||||
\|silent! .foldopen
|
|
||||||
augroup END
|
augroup END
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const pathM = require('path');
|
|
||||||
const argparse = require('argparse');
|
const argparse = require('argparse');
|
||||||
const markdownIt = require('markdown-it');
|
const markdownIt = require('markdown-it');
|
||||||
const markdownItTaskCheckbox = require('markdown-it-task-checkbox');
|
const markdownItTaskCheckbox = require('markdown-it-task-checkbox');
|
||||||
|
|
@ -111,7 +110,6 @@ let renderedHtmlDocument = `
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>${pathM.basename(args.INPUT_FILE || '<stdin>')}</title>
|
|
||||||
${stylesheetsTexts.map((s) => `<style>\n${s}\n</style>`).join('\n')}
|
${stylesheetsTexts.map((s) => `<style>\n${s}\n</style>`).join('\n')}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -265,14 +265,8 @@ h6 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover .anchor {
|
||||||
.anchor > * {
|
> * {
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (hover: none) {
|
|
||||||
.anchor > * {
|
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue