Commit 07cc58ff authored by Guillaume Quintard's avatar Guillaume Quintard

Allow empty titles

Useful to order sections without have a title.
parent 98fadda4
......@@ -13,7 +13,11 @@ p && $0 !~ "[ /]* SECTION: " {
$0 ~ "[ /]* SECTION: " {
section = $3;
sl[len++] = section;
tl[section] = gensub(/[\t ]*\/?\* SECTION: [^ ]+ +/, "", "1", $0);
if ($4) {
tl[section] = gensub(/[\t ]*\/?\* SECTION: [^ ]+ +/, "", "1", $0);
} else {
tl[section] = "";
}
p = 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment