Reformat code and add todo functions

This commit is contained in:
davidovski 2023-02-18 01:29:59 +00:00
parent e8e91a5025
commit 7bcc93b621
1 changed files with 16 additions and 2 deletions

View File

@ -56,6 +56,7 @@ _emph () {
# parse heading
#
# h [heading no.]
#
_h () {
local num=$1
while IFS= read -r line; do
@ -80,12 +81,11 @@ _h () {
# parse paragraphs
#
# p
_p () {
empty=true
while IFS= read -r line; do
case "$line" in
"#"*)
"#"*|">"*|"``"*)
printf "%s\n" "$line"
;;
"")
@ -108,6 +108,11 @@ _p () {
}
}
# parse ref-style links
#
_ref () {
}
# parse links
#
_a_img () {
@ -149,6 +154,15 @@ _ul () {
_ol () {
}
# parse mutliline codeblocks
#
_code () {
}
# parse quotes
#
_quote () {
}
# convert the markdown from stdin into html