6 lines
191 B
Text
6 lines
191 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Move any property into a block, otherwise the pandoc org parser merges them
|
||
|
# all into a single line for some reason
|
||
|
sed -E -i 's/^[a-z]+::.*$/- !property-deleteme!\n \0/' "$1"
|