update from sparkleup

This commit is contained in:
Madison Scott-Clary 2020-04-21 23:40:03 -07:00
parent 7487564a46
commit 7e071de1a6
2 changed files with 35 additions and 0 deletions

5
.tags
View File

@ -239,6 +239,7 @@ kink writing/sawtooth/party/1-3-breeding-pair.md 2;" vimwiki:writing/sawtooth/pa
kink writing/sawtooth/party/1-4-hostess.md 2;" vimwiki:writing/sawtooth/party/1-4-hostess\twriting/sawtooth/party/1-4-hostess
kink writing/sawtooth/party/index.md 2;" vimwiki:writing/sawtooth/party/index\twriting/sawtooth/party/index
magic writing/sawtooth/acts-of-intent.md 3;" vimwiki:writing/sawtooth/acts-of-intent\twriting/sawtooth/acts-of-intent#magic
markdown tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
markdown tech/md-ext/vimwiki.md 2;" vimwiki:tech/md-ext/vimwiki\ttech/md-ext/vimwiki
mental-health writing/rum-and-coke/how-many.md 2;" vimwiki:writing/rum-and-coke/how-many\twriting/rum-and-coke/how-many
mental-health writing/rum-and-coke/index.md 2;" vimwiki:writing/rum-and-coke/index\twriting/rum-and-coke/index
@ -319,6 +320,7 @@ novel writing/sawtooth/party/1-3-breeding-pair.md 2;" vimwiki:writing/sawtooth/p
novel writing/sawtooth/party/1-4-hostess.md 2;" vimwiki:writing/sawtooth/party/1-4-hostess\twriting/sawtooth/party/1-4-hostess
novel writing/sawtooth/party/index.md 2;" vimwiki:writing/sawtooth/party/index\twriting/sawtooth/party/index
outline writing/post-self/qoheleth/index.md 3;" vimwiki:writing/post-self/qoheleth/index\twriting/post-self/qoheleth/index#outline
package tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
package tech/md-ext/vimwiki.md 2;" vimwiki:tech/md-ext/vimwiki\ttech/md-ext/vimwiki
party writing/sawtooth/centerpiece.md 3;" vimwiki:writing/sawtooth/centerpiece\twriting/sawtooth/centerpiece#party
party writing/sawtooth/party/1-2-hostess.md 2;" vimwiki:writing/sawtooth/party/1-2-hostess\twriting/sawtooth/party/1-2-hostess
@ -392,6 +394,7 @@ post-self writing/post-self/qoheleth/Sasha/003.md 2;" vimwiki:writing/post-self/
post-self writing/post-self/qoheleth/Sasha/004.md 2;" vimwiki:writing/post-self/qoheleth/Sasha/004\twriting/post-self/qoheleth/Sasha/004
post-self writing/post-self/qoheleth/Sasha/005.md 2;" vimwiki:writing/post-self/qoheleth/Sasha/005\twriting/post-self/qoheleth/Sasha/005
post-self writing/post-self/qoheleth/index.md 3;" vimwiki:writing/post-self/qoheleth/index\twriting/post-self/qoheleth/index#post-self
python tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
python tech/md-ext/vimwiki.md 2;" vimwiki:tech/md-ext/vimwiki\ttech/md-ext/vimwiki
qoheleht writing/post-self/qoheleth/Ioan/006-b.md 2;" vimwiki:writing/post-self/qoheleth/Ioan/006-b\twriting/post-self/qoheleth/Ioan/006-b
qoheleth writing/post-self/qoheleth/Carter/001-a.md 2;" vimwiki:writing/post-self/qoheleth/Carter/001-a\twriting/post-self/qoheleth/Carter/001-a
@ -564,8 +567,10 @@ short-story writing/sawtooth/the-fool.md 3;" vimwiki:writing/sawtooth/the-fool\t
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
tech tech/index.md 2;" vimwiki:tech/index\ttech/index
tech tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
tech tech/md-ext/vimwiki.md 2;" vimwiki:tech/md-ext/vimwiki\ttech/md-ext/vimwiki
universe writing/sawtooth/index.md 2;" vimwiki:writing/sawtooth/index\twriting/sawtooth/index
vimwiki tech/md-ext/verse.md 2;" vimwiki:tech/md-ext/verse\ttech/md-ext/verse
vimwiki tech/md-ext/vimwiki.md 2;" vimwiki:tech/md-ext/vimwiki\ttech/md-ext/vimwiki
writing diary/2020-04-09.md 1;" vimwiki:diary/2020-04-09\tdiary/2020-04-09
writing writing/belek.md 2;" vimwiki:writing/belek\twriting/belek

30
tech/md-ext/verse.md Normal file
View File

@ -0,0 +1,30 @@
%title Verse Markdown Extension
:tech:markdown:vimwiki:python:package:
## What it does
I write a lot of poetry, but don't want to use code blocks for it, preferring instead to use a `div` with `white-space: pre-wrap` style. I use a triple single-quote fence.
'''
This
is
a
poem
'''
## How to use it
```python
default_config = {
'tag_tuple': ('<div class="verse">', '</div>'),
}
my_config = {
'tag_tuple': ('<verse>', '</verse>'),
}
markdown(source, extensions=[VerseExtension(**my_config)])
```
## Where to get it
* [PyPI](https://pypi.com/project/markdown-verse)
* [Github](https://github.com/makyo/markdown-verse)