update from sparkleup
This commit is contained in:
parent
51c2e396e3
commit
cd8051c76c
6
.tags
6
.tags
|
@ -104,7 +104,7 @@ erotica writing/sawtooth/party/1-2-hostess.md 2;" vimwiki:writing/sawtooth/party
|
|||
erotica writing/sawtooth/party/1-3-breeding-pair.md 2;" vimwiki:writing/sawtooth/party/1-3-breeding-pair\twriting/sawtooth/party/1-3-breeding-pair
|
||||
erotica writing/sawtooth/party/1-4-hostess.md 2;" vimwiki:writing/sawtooth/party/1-4-hostess\twriting/sawtooth/party/1-4-hostess
|
||||
erotica writing/sawtooth/party/index.md 2;" vimwiki:writing/sawtooth/party/index\twriting/sawtooth/party/index
|
||||
etc diary/2020-04-22.md 62;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#etc
|
||||
etc diary/2020-04-22.md 64;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#etc
|
||||
executive-function diary/2020-04-09.md 1;" vimwiki:diary/2020-04-09\tdiary/2020-04-09
|
||||
executive-function diary/2020-04-10.md 1;" vimwiki:diary/2020-04-10\tdiary/2020-04-10
|
||||
family writing/sawtooth/the-fool.md 3;" vimwiki:writing/sawtooth/the-fool\twriting/sawtooth/the-fool#family
|
||||
|
@ -570,8 +570,8 @@ short-story writing/sawtooth/overclassification.md 3;" vimwiki:writing/sawtooth/
|
|||
short-story writing/sawtooth/the-fool.md 3;" vimwiki:writing/sawtooth/the-fool\twriting/sawtooth/the-fool#short-story
|
||||
short-story writing/sawtooth/what-defines-us.md 3;" vimwiki:writing/sawtooth/what-defines-us\twriting/sawtooth/what-defines-us#short-story
|
||||
suicide writing/sawtooth/every-angel-is-terrifying.md 3;" vimwiki:writing/sawtooth/every-angel-is-terrifying\twriting/sawtooth/every-angel-is-terrifying#suicide
|
||||
tag1 diary/2020-04-22.md 62;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#tag1
|
||||
tag2 diary/2020-04-22.md 62;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#tag2
|
||||
tag1 diary/2020-04-22.md 64;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#tag1
|
||||
tag2 diary/2020-04-22.md 64;" vimwiki:diary/2020-04-22\tdiary/2020-04-22#tag2
|
||||
tech tech/index.md 2;" vimwiki:tech/index\ttech/index
|
||||
tech tech/md-ext/editing.md 2;" vimwiki:tech/md-ext/editing\ttech/md-ext/editing
|
||||
tech tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
|
||||
|
|
|
@ -21,7 +21,7 @@ Instead, I'd like to post about some recent writing tech projects in the form of
|
|||
|
||||
First, we have the Verse extension. It's dead simple: it looks for a block of text fenced in with triple single-quotes and wraps it in a `<div class="verse">`. For example,
|
||||
|
||||
```plain
|
||||
```text
|
||||
'''
|
||||
Arctic fox's den
|
||||
adorned with flowers and snow
|
||||
|
@ -39,9 +39,11 @@ garden in winter</div>
|
|||
|
||||
which, with the following style
|
||||
|
||||
```css
|
||||
```css hl_lines="2"
|
||||
.verse {
|
||||
white-space: pre-wrap;
|
||||
border-left: 5px solid #ddd;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue