-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make MarkdownFields translatable #102
Comments
Hey @jeriox, thank you for sharing this. Had a few requests for making this localize-compatible, so the code snippet is very handy! |
I got it working again with the code above, we will use that for now. Still feels a bit hacky to me, so we'd be happy if there was a better alternative built in :) |
This would need a bit of thinking. e.g.
Where do you draw the line and split things? is it at every link? every paragraph? every heading? given we can allow raw html in there too, how should we handle that? |
Currently, my approach works as follows: as there is already a lot of thought going into how to split up StreamFields, I tried to reuse that as much as possible. Therefor, I render the markdown to HTML and use the existings extract_strings() method. This also ensures that links are treated appropriatly. For the other direction, using html2text works quite well. I didn't test with raw HTML though. I think that every paragraph and every heading is a good split, as it ensures that one doesn't need to re-translate it if the page didn't change. |
Hey @zerolab, did you have a chance to look at this any further? |
@jeriox to be honest this completely flew under my radar 🙈 I think your version is better than what we currently have (i.e. nothing). Do you have the capacity to submit a PR? We'd want the logic in |
While this is true, I'm not sure if it is good enough to include it in the library. We have been using this solution in our project for two years now, and there are several problems:
If those are okay for you, I can open a PR. We'd like to do the splitting on our own instead of relying on converting to HTML, but we didn't have the capacity to do so yet |
Thank you for the additional context on real-life usage. Absolutely fantastic to know. What if we make the The images question is outside of wagtail-markdown's purview, I'm afraid. We definitely need to solve this more centrally. |
I'm not sure that it needs to be specifically plugabble, as you could just subclass the provided MarkdownField and change the So I guess we could just include my current solution as the default, especially if images are out of scope anyways and maybe the issue with duplicate segments gets fixed centrally as well. The other things are just small issues IMO and could just be mentioned in the docs |
I'm interested in any updates around this topic. |
Currently, when using wagtail-localize, a MarkdownField cannot be translated in an easy way, as the whole content of the field is put into one translation segment. For a long page with a markdown body, this is not feasible. I'd like to have the MarkdownField split up in several translation segments (like with StreamFields), so I can translate them separately.
I wrote a hacky solution for that some time ago, but it breaks with the current version. I'd be happy if we could find a way to support that properly.
My old code for reference:
The text was updated successfully, but these errors were encountered: