aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_xmls.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/output_xmls.org')
-rw-r--r--org/output_xmls.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/org/output_xmls.org b/org/output_xmls.org
index 18f5a61..ec2e5d8 100644
--- a/org/output_xmls.org
+++ b/org/output_xmls.org
@@ -1838,7 +1838,7 @@ void images_cp(M)(
pth_html.image.mkdirRecurse;
}
foreach (image; doc_matters.srcs.image_list) {
- auto fn_src_in = doc_matters.src_path_info.src_image_root_with_path ~ "/" ~ image;
+ auto fn_src_in = doc_matters.src.image_dir_path ~ "/" ~ image;
auto fn_src_out = pth_html.image ~ "/" ~ image;
debug(images_html) {
writeln(fn_src_in, " -> ", fn_src_out);
@@ -2653,12 +2653,12 @@ void epub3_write_output_files(M,D,E,Mt,Mic,Otnx,Otn,Oc)(
debug(epub_output) {
debug(epub_images) {
writeln(
- doc_matters.src_path_info.src_image_root_with_path, "/", image, " -> ",
+ doc_matters.src.image_dir_path, "/", image, " -> ",
pth_epub3.dbg_doc_oebps_image(doc_matters.src.filename), "/", image
);
}
}
- auto fn_src = doc_matters.src_path_info.src_image_root_with_path ~ "/" ~ image;
+ auto fn_src = doc_matters.src.image_dir_path ~ "/" ~ image;
auto fn_out = pth_epub3.doc_oebps_image(doc_matters.src.filename.to!string) ~ "/" ~ image;
if (exists(fn_src)) {
{