I have a question regarding the best practise of handling formated text when using i18n. For example, let say I have a about us page with multiple paragraphs, bullet points etc. (keeping in mind that I dont want to change the template directly every time I add a paragraph or bullet pint) How am I best representing these more complicated structures? Are they at all possible to do with i18n or should I be using a different technique?
Asked
Active
Viewed 361 times
3
-
a piece of source code would be good, and explain what exactly you want to do to wich part of the text – rmagnum2002 Jun 14 '12 at 16:21
1 Answers
4
My personal preference is to store content in Markdown within an I18n string.

tigrish
- 2,488
- 18
- 21
-
2I second use of Markdown. [This Stackoverflow question](http://stackoverflow.com/q/10233686/567863) may also be of reference to you, vincent. – Paul Fioravanti Jun 21 '12 at 21:46