@imaginary-maths/text-poster
v1.0.1
Published
Web library for typesetting poster-style text.
Downloads
2
Readme
text-poster
Web library for typesetting text within a rectangular area in a poster style.
This library places text on a container by using a maximum line height and a minimum line height. Text is distributed in lines trying to fit as much text as possible in a single line, down to the minimum line height. Text will be stretched to meet the borders of the container but no more than the line exceeds the maximum.
... It's hard to explain. Just try the demo.
Usage
This library can be imported through npm / yarn (@imaginary-maths/text-poster
) or directly imported
through HTML and accessed through the global object TextPoster
.
const TextPoster = require('@imaginary-maths/text-poster');
const container = document.getElementById('textContainer');
TextPoster.render(container, 'Hello world');
See index.html
for a better example.
Check src/main.js
for available options.
The font used is whatever was assigned to the container through the magic of CSS.
Escape codes
If a line starts with @@
it's height will be made the minimum (according to parameters)
and the text will be centered.
Credits
Created by Eric Londaits for IMAGINARY gGmbH.
License
Copyright (c) 2019 IMAGINARY Licensed under the MIT license. See LICENSE file.