3

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?

Cœur
  • 37,241
  • 25
  • 195
  • 267
luxerama
  • 1,109
  • 2
  • 14
  • 31

1 Answers1

4

My personal preference is to store content in Markdown within an I18n string.

tigrish
  • 2,488
  • 18
  • 21
  • 2
    I 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