formatted-text

A React component for formatting line breaks and links.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
formatted-text
0.6.1522 days ago9 years agoMinified + gzip package size for formatted-text in KB

Readme

A React component for formatting line breaks and links.
<FormattedText>
  Email me (foo@example.com) or visit one of:

  foo.example.com
  bar.example.com
  baz.example.com
</FormattedText>

Email me (<a href="mailto:foo@example.com">foo@example.com</a>) or visit one of:<br />
<br />
<a href="http://foo.example.com">foo.example.com</a><br />
<a href="http://bar.example.com">bar.example.com</a><br />
<a href="http://baz.example.com">baz.example.com</a>

Props

LinkComponent

A component that receives children and href props. Defaults to 'a'.