diff options
Diffstat (limited to 'src/doc_reform/output/paths_output.d')
-rw-r--r-- | src/doc_reform/output/paths_output.d | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/doc_reform/output/paths_output.d b/src/doc_reform/output/paths_output.d index 0ca9fa7..70b1614 100644 --- a/src/doc_reform/output/paths_output.d +++ b/src/doc_reform/output/paths_output.d @@ -299,9 +299,6 @@ template DocReformPathsEPUB() { return asNormalizedPath((out_pth.output_base).chainPath(base_dir)).array; } string base_filename(string fn_src) { - return fn_src.baseName.stripExtension ~ "." ~ lng; - } - string base_filename(string fn_src) { return fn_src.baseName.stripExtension; } string base_filename_epub(string fn_src) { @@ -320,7 +317,7 @@ template DocReformPathsEPUB() { return asNormalizedPath(doc_oebps.chainPath("image")).array; } string epub_file(string fn_src) { - return asNormalizedPath(base.chainPath(base_filename(fn_src) ~ ".epub")).array; + return asNormalizedPath(base.chainPath(base_filename_epub(fn_src) ~ ".epub")).array; } string dirtop() { return "".chainPath("").array; |