Replies: 1 comment 1 reply
-
It is worth switching to relative links in HTML by default, I suppose. Are there any SEO implications? For now, there is a workaround for your case: just create a new deployment layer, and specify |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd like to use
emanote
to create documents that are viewable offline (without starting a local web server; I just want to open the files in browser asfile://...
). The paths in the documents (e.g. hrefs coming from wiki links, the image src attributes) are relative to the root of the site, which is not suitable for this scenario. I've achieved my goal by runningpython3 -m http.server
in the directory containing the html files generated byemanote
and then downloading them usingwget --mirror --convert-links 'http://localhost:8000'
. But this is a workaround.Is it difficult to make this customizable, so that the user could switch between relative and root-relative paths? I believe it may require some changes to
ema
.Beta Was this translation helpful? Give feedback.
All reactions