these can be restored in the output anyway Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
8 lines
329 B
Bash
Executable File
8 lines
329 B
Bash
Executable File
#!/bin/sh
|
||
# Remove fancy marks like “. They can be readded by the Markdown processor output later,
|
||
# but right now they just complicate further cleanups.
|
||
sed -E 's/“/"/g' _tmp/ccsrd.md > _tmp/ccsrd.new.md
|
||
sed -E 's/”/"/g' -i _tmp/ccsrd.new.md
|
||
sed -E "s/‘/'/g" -i _tmp/ccsrd.new.md
|
||
sed -E "s/’/'/g" -i _tmp/ccsrd.new.md
|