mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-13 17:56:26 +00:00
7 lines
219 B
Bash
Executable File
7 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Markua doesn't know what to do with 4 backticks (````), so convert to 3:
|
|
find manuscript -type f -name "*.md" -print0 | xargs -0 sed "s/````/```/g"
|
|
|
|
# Do nothing, yet. This is where the sed magic will go
|