bugfix: removed introduced bug with | -> : replacement
This commit is contained in:
parent
760c33b225
commit
a9201a7060
@ -96,7 +96,7 @@ function fn(path, n, a) {
|
|||||||
function title(start, summary) {
|
function title(start, summary) {
|
||||||
summary = getcontent(summary)
|
summary = getcontent(summary)
|
||||||
gsub("\n", " ", summary) # This will be put on a single line
|
gsub("\n", " ", summary) # This will be put on a single line
|
||||||
gsub("|", ":", summary) # we use "|" as delimiter
|
gsub("\\|", ":", summary) # we use "|" as delimiter
|
||||||
depth = split(FILENAME, path, "/")
|
depth = split(FILENAME, path, "/")
|
||||||
collection = depth > 1 ? path[depth-1] : ""
|
collection = depth > 1 ? path[depth-1] : ""
|
||||||
collection = collection in collection2label ? collection2label[collection] : collection
|
collection = collection in collection2label ? collection2label[collection] : collection
|
||||||
|
Loading…
Reference in New Issue
Block a user