Multi language site support#100
Open
Ze0nC wants to merge 20 commits into
Open
Conversation
Details are moved to plugin's readme.md
With copying index.html of default language to root output folder.
|
@JohnSundell Hi, this PR had aged a bit but I think multi-language support is still a desired feature. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @JohnSundell
Thank you for creating Publish.
I wanted to make my site support multi-language, for example:
So I tried to:
You may check how to use it in documentation: generate-multi-language-site
I have applied it to my own site at: czj.io
The design is basically :
var language: Language?toContentProtocol, to assign each item/page/index a language.public protocol MultiLanguageWebsite: Website where ItemMetadata: MultiLanguageWebsiteItemMetadatainternal struct MultiLanguageContentManagerto correlate items and links of different languages.I had to override (mostly copy and paste) many functions to handle multi-language website while keeping original functions unchanged. This caused redundant in code.
If you agree, I want to try to merge the code of
MultiLanguageWebsiteintoWebsite, to make codes shorter and clearer.I understand that you are busy recently and may not have much time on checking this.
But I sincerely hope to hear from you and get feedback.
Cheers,
Zhijin