summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-16 11:44:07 -0300
committerEuAndreh <eu@euandre.org>2025-04-16 11:55:06 -0300
commit6c53ab4a08c2735b8f1a9eb53a27aed511043f21 (patch)
treedbdd796ff41289daf03fb2839bdc1911fc07f2b8
parentsrc/adoc: Unset :idprefix: global header value (diff)
downloadadoc-6c53ab4a08c2735b8f1a9eb53a27aed511043f21.tar.gz
adoc-6c53ab4a08c2735b8f1a9eb53a27aed511043f21.tar.xz
src/adoc: Set "-" as header ID separator
-rwxr-xr-xsrc/adoc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/adoc b/src/adoc
index 4feed17..5014409 100755
--- a/src/adoc
+++ b/src/adoc
@@ -70,9 +70,10 @@ indent_4_blocks() {
runadoc() {
asciidoctor \
- -s \
- -a sectanchors \
- -a idprefix \
+ -s \
+ -a sectanchors \
+ -a idprefix \
+ -a idseparator=- \
-
}