I have a page called en.md
and another page called ko.md
in a directory. Both files have custom-set permalinks, so en.md
and ko.md
respectively are not a part of the page URL. Regardless of this setting, to move from en.md
to ko.md
in normal HTML, all I would need to do is this :
<a href="ko.md">Move to File KO</a>
However, this doesn’t seem to work in Jekyll; this link sends me straight to URL .../ko.md
, where there is no file (because of that permalink setting), rendering my link unusable. Is there a way to link to a specific file instead of just permalinks in Jekyll-processed HTML? Thank you!