1.0.1 • Published 6 years ago

breaklines v1.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

Breaklines

A simple utility to add <br> tags into strings containing \n.

Created as my first NPM module, I've needed to create this when building static sites through Wintersmith, as when creating pages via .json files the newlines were not displayed.
Calling this function allowed them to be displayed correctly.

Install

$ npm install breaklines --save

Usage

const breaklines = require('breaklines');
const string = 'Testing \n adding \n\n newlines';
console.log(breaklines(string));
//=> 'Testing <br> adding <br><br> newlines'