From 02c49e983d478fad99db8658180828fea0ab242e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 13 May 2021 19:45:16 +0100 Subject: fix encodings in links --- content/html/resources.html | 4 ++-- modules/html.source.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/html/resources.html b/content/html/resources.html index ea5413d5..392d28dd 100644 --- a/content/html/resources.html +++ b/content/html/resources.html @@ -80,7 +80,7 @@ h2, h3 {
  • The Practise of System and Network Administration; Thomas A. Limoncelli, Christina J. Hogan, Strata R. Chalup; Addison-Wesley Professional
  • Clusterbau mit Linux-HA; Michael Schwartzkopff; O'Reilly
  • Object-Oriented Programming with ANSI-C; Axel-Tobias Schreiner
  • -
  • Programming Perl aka "The Camel Book"; Tom Christiansen, brian d foy, Larry Wall & Jon Orwant; O'Reilly
  • +
  • Programming Perl aka "The Camel Book"; Tom Christiansen, brian d foy, Larry Wall & Jon Orwant; O'Reilly
  • Higher Order Perl; Mark Dominus; Morgan Kaufmann
  • The Docker Book; James Turnbull; Kindle
  • Developing Games in Java; David Brackeen and others...; New Riders
  • @@ -117,7 +117,7 @@ h2, h3 {
  • The Off Switch; Mark Cropley; Virgin Books
  • The Daily Stoic; Ryan Holiday, Stephen Hanselman; Profile Books
  • Deep Work; Cal Newport; Piatkus
  • -
  • The 7 Habits Of Highly Effective People; Stephen R. Covey; Simon & Schuster UK
  • +
  • The 7 Habits Of Highly Effective People; Stephen R. Covey; Simon & Schuster UK
  • The Power of Now; Eckhard Tolle; Yellow Kite
  • Technical video lectures and courses

    diff --git a/modules/html.source.sh b/modules/html.source.sh index 7d337b02..3eb2ee4e 100644 --- a/modules/html.source.sh +++ b/modules/html.source.sh @@ -53,7 +53,7 @@ html::fromgmi () { while IFS='' read -r line; do if [ $is_list -eq 1 ]; then if [[ "$line" == '* '* ]]; then - echo "
  • ${line/\* /}
  • " + echo "
  • $(html::special "${line/\* /}")
  • " else is_list=0 echo "" -- cgit v1.2.3