diff options
Diffstat (limited to 'org/default_paths.org')
-rw-r--r-- | org/default_paths.org | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/org/default_paths.org b/org/default_paths.org index 376201f..1eae1c7 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -1188,8 +1188,8 @@ template spinePathsHTML() { string doc_root() { return ((output_path_root.chainPath(doc_tree.doc_root)).asNormalizedPath).array; } - string harvest(string fn_harvest) { - return doc_root ~ "/" ~ fn_harvest; + string curate(string fn_curate) { + return doc_root ~ "/" ~ fn_curate; } string internal_base() { return ((doc_tree.base).asNormalizedPath).array; @@ -1255,10 +1255,10 @@ template spineUrlsHTML() { string doc_root() { return url_doc_root ~ ((doc_tree.doc_root).asNormalizedPath).array; } - string harvest(string fn_harvest) { + string curate(string fn_curate) { return format(q"ā%s/%sā", doc_root, - fn_harvest, + fn_curate, ); } string base() { |