From 7ce4aab610649ff015ae004be0d29db1dc76c3b4 Mon Sep 17 00:00:00 2001 From: peteyboy Date: Mon, 24 Oct 2022 17:47:29 +0000 Subject: [PATCH] removed parts where SDF didn't have Text::Markdown installed, because they do now. --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 66c880b..055dd85 100644 --- a/README.md +++ b/README.md @@ -2,21 +2,14 @@ I just started messing around as part of looking for a way to make contributing to tutorials easier, and got as far as using 'ssg5', from [[https://rgz.ee/ssg.html]], which was recommended as a markdown-converting static site generator on another board here. -I had problems with Markdown.pl not working but I posted to REQUESTS, and they added it (but at the time I used cpanm and installed that library locally*, and then ssg worked!) +I had problems with Markdown.pl not working but I posted to REQUESTS, and they added it. Because I didn't like how it silently would fail on the markdown problem, -so I added a little pipeline-tracing with the bash 'caller' command (I + I added a little pipeline-tracing with the bash 'caller' command (I looked it up), and so with that it becomes a bash script instead of a plain sh script, but I think it's better. I posted it here on the sdf git if anyone wants to try it out. It's cool, it processes markdown first then HTML, so existing HTML files are untouched until you delete them from src folder. -\*Hopefully the admins fix it before it matters, but here's what I used to [install the perl module I needed with cpanm](https://stackoverflow.com/questions/2980297/how-can-i-use-cpan-as-a-non-root-user)--Text::Markdown--which you can ignore installing cpanm because it's already installed on SDF. It's just: - - curl http://cpanmin.us | perl - -l ~/perl5 App::cpanminus local::lib - eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib` - echo 'eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib`' >> ~/.profile - echo 'export MANPATH=$HOME/perl5/man:$MANPATH' >> ~/.profile - cpanm Text::Markdown