From a67b9c992b9aa251f8678796bd7533fab0099708 Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Sat, 7 Mar 2026 12:26:43 +0100 Subject: [PATCH] title and ds_store --- .gitignore | 3 ++- st/st.sh | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) mode change 100644 => 100755 st/st.sh diff --git a/.gitignore b/.gitignore index 7c77252..e15acc0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .venv settings.yml out -uv.lock \ No newline at end of file +uv.lock +**/.DS_Store diff --git a/st/st.sh b/st/st.sh old mode 100644 new mode 100755 index cf35db2..a3f21d3 --- a/st/st.sh +++ b/st/st.sh @@ -2,11 +2,14 @@ input=$1 output=$input/out outformat=markdown+hard_line_breaks+autolink_bare_uris+lists_without_preceding_blankline index=$output/index.html +title=Texts rm -rf $output/* cp style.css $output/style.css -echo '
Home

' >> $index +echo '' >> $index +echo $title >> $index +echo '
Home

' >> $index for f in $input/*.md do