0.0.1 • Published 10 years ago

mkup v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

mkup

Insert metadata characters into a string without affecting the indexing of the string. Useful for inserting color codes into a string of javascript.

var mkup = require('mkup')

var decorate = mkup('some string')

decorate
  .insert(2, 'xx')
  .insert(3, 'xx')

console.log(decorate.toString()) // == 'soxxmxxe string'

api

mkup(String) -> Decorator instance

Create a new Decorator instance.

Decorator#insert(index, str) -> itself

Insert markup str at index in original content. Returns itself. Mutates the decorator instance.

Decorator#toString() -> String

Render the string.

license

MIT