| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Align the text in a string.
Examples
Align text values in an array:
align([1, 2, 3, 100]);
//=> [' 1', ' 2', ' 3', '100']Visit the example to see how this works.
Install with npm
$ npm i align-text --savevar align = require('align-text');
align(text, callback_function_or_integer);Params
Example
align(text, 4);Would align:
abc abc abc
To:
abc
abc
abc
The callback is used to determine the indentation of each line and gets the following params:
The callback may return:
Integer example:
// calculate half the difference between the length
// of the current line and the longest line
function centerAlign(len, longest, line, lines) {
return Math.floor((longest - len) / 2);
}Object example:
function centerAlign(len, longest, line, lines) {
return {
character: '\t',
indent: Math.floor((longest - len) / 2),
prefix: '~ ',
}
}Using the centerAlign function from above:
align(text, centerAlign);Would align this text:
Lorem ipsum dolor sit amet
consectetur adipiscin
elit, sed do eiusmod tempor incididun
ut labore et dolor
magna aliqua. Ut enim ad mini
veniam, quisResulting in this:
Lorem ipsum dolor sit amet,
consectetur adipiscing
elit, sed do eiusmod tempor incididunt
ut labore et dolore
magna aliqua. Ut enim ad minim
veniam, quis
Customize
If you wanted to add more padding on the left, just pass the number in the callback.
For example, to add 4 spaces before every line:
function centerAlign(len, longest, line, lines) {
return 4 + Math.floor((longest - len) / 2);
}Would result in:
Lorem ipsum dolor sit amet,
consectetur adipiscing
elit, sed do eiusmod tempor incididunt
ut labore et dolore
magna aliqua. Ut enim ad minim
veniam, quis
align(text, function (len, max, line, lines) {
return {prefix: ' - '};
});Would return:
- Lorem ipsum dolor sit amet, - consectetur adipiscing - elit, sed do eiusmod tempor incididunt - ut labore et dolore - magna aliqua. Ut enim ad minim - veniam, quis
align(text, function (len, max, line, lines) {
return {
indent: Math.floor((max - len) / 2),
character: '~',
};
});Would return
~~~~~Lorem ipsum dolor sit amet, ~~~~~~~~consectetur adipiscing elit, sed do eiusmod tempor incididunt ~~~~~~~~~ut labore et dolore ~~~~magna aliqua. Ut enim ad minim ~~~~~~~~~~~~~veniam, quis
Install dev dependencies:
$ npm i -d && npm testPull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on June 09, 2015.
| Back | FazBrowse Home | New Git URL |