diff options
author | EuAndreh <eu@euandre.org> | 2025-03-27 16:49:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-27 16:49:53 -0300 |
commit | 4c19c3aef66c9e6a228e9c734302aabfa688d230 (patch) | |
tree | 6602f8d449b234bde85f040e146390dc621a8305 /src/htmlbody | |
parent | src/htmlbody: Use tidy(1) to indent htmlbody snippets by 4 blocks (diff) | |
download | mkwb-4c19c3aef66c9e6a228e9c734302aabfa688d230.tar.gz mkwb-4c19c3aef66c9e6a228e9c734302aabfa688d230.tar.xz |
src/htmlbody: Put "plaintext" role in surrounding div
Diffstat (limited to 'src/htmlbody')
-rwxr-xr-x | src/htmlbody | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htmlbody b/src/htmlbody index 1e31751..6dcab31 100755 --- a/src/htmlbody +++ b/src/htmlbody @@ -19,7 +19,8 @@ plaintext_links() { next } file = BASE "." count++ ".txt" - print "link:" file "[plaintext,role=plaintext]" + print "[role=plaintext]" + print "link:" file "[plaintext]" }' "$1" } |