moved images/graphics resources to subfolder of markdown files location

This commit is contained in:
Yuriy 2024-07-06 18:46:59 -04:00
parent 9ffccfbeb7
commit b5224937d2
2 changed files with 4 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -136,7 +136,7 @@ class JoplinExporter:
"""The main exporter class."""
content_dir = Path("content")
static_dir = Path("static/resources")
static_dir = Path("content/resources")
joplin_dir = Path.home() / ".config/joplin-desktop"
def __init__(self):
@ -192,13 +192,13 @@ class JoplinExporter:
# Add the resource to the set of used resources, so we can only copy
# the resources that are used.
self.used_resources.add(resource_id)
return "resources/" + resource_id + resource.derived_ext
return "content/resources/" + resource_id + resource.derived_ext
def copy_resources(self):
"""Copy all the used resources to the output directory."""
for resource_id in self.used_resources:
resource = self.resources[resource_id]
print(f"{resource_id}.{resource.extension}")
print(f"Exporting Resource: {resource_id}.{resource.extension}")
copy(
self.joplin_dir / "resources" / (f"{resource_id}.{resource.extension}"),
self.static_dir / f"{resource_id}{resource.derived_ext}",
@ -358,7 +358,7 @@ class JoplinExporter:
<p style="font-size:80%; font-style: italic">
Last updated on {note.updated_time:%B %d, %Y}. For any questions/feedback,
email me at <a href="mailto:hi@stavros.io">hi@stavros.io</a>.
email me at <a href="mailto:blog@zinchuk.xyz">blog@zinchuk.xyz</a>.
</p>
"""
)