Is there good package that does text formatting or should I make one

I am need users to be able to format text is there a package or should i make it?

Built into meteor is markdown. It isn’t a full blown text formatting engine but usually does the trick.

http://docs.meteor.com/#/basic/markdown

1 Like

thanks. I just tryed it and I am doing something wrong why does <p>{{#markdown}}{{text}}{{/markdown}}</p> make nothing render.

Did you add the markdown package to your project?

1 Like

Isn’t that going to wrap all your generated HTML in a <p> tag?

Just do this:

{{#markdown}}
  {{text}}
{{/markdown}}

It works both ways with and with out

. Just tested.

Thanks I forgot to add it in I was tired oops.

1 Like

No worries, happens to everyone :smile: