newline-to-br

1.0.0 • Public • Published

newline-to-br

NPM version build status Test coverage Downloads

Format newlines to <br> tags. Supports linux, osx and windows newlines.

Installation

npm install newline-to-br

Usage

var toBr = require('newline-to-br');
 
toBr('This page cannot be displayed because \n your computer is currently offline');
 
// => 'This page cannot be displayed because <br> computer is currently offline'
br {
   display: block;
   margin: 0;
   padding: 0;
   border: none;
   content: " ";
}
 
@media only screen and (max-width: 475px) {
   br { display: none; }
}

Why?

Because by changing our newlines to <br> tags we can add custom styling which gives us finer-grained control over our text.

See also

License

MIT

Dependents (0)

Package Sidebar

Install

npm i newline-to-br

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • yoshuawuyts