1.1.0 โ€ข Published 8 months ago

tm-text v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Contributors Forks Stargazers Issues MIT License

tmText

Trackmania and Maniaplanet text parser and formatter

โ˜„๏ธ Bug reports / feature requests ยป

Table Of Contents

๐Ÿ‘‹ About The Project

This project aims to provide a simple interface for parsing and formatting text of Trackmania and Maniaplanet games.

Text formatting and colour codes in TrackMania and ManiaPlanet can be used for players' nicknames, track names and comments, music file comments, server names and comments, and in-game online chats.
-- https://wiki.xaseco.org/wiki/Text_formatting

Given an input text of:
$f00R$fa2a$ff3i$0f0n$06fb$30fo$60fw
this library produces the following HTML output:
Rainbow

๐Ÿš€ Installation

Yarn

yarn add tm-text

NPM

npm i tm-text

๐Ÿ‘€ Usage

tmText can be used as an ES module as well as a CommonJS module:

ESM

import tmText from 'tm-text';
// or
import { tmText } from 'tm-text';

CommonJS

const { tmText } = require('tm-text');
// or
const tmText = require('tm-text').default;
// or
const { default: tmText } = require('tm-text');

From now on only the ES module syntax will be shown.

Member functions

import tmText from 'tm-text';

const text = tmText('$s$00dFl$24fas$26fh$24fba$00dck');

// Input string without special tokens ('Flashback')
console.log(text.humanize());

// HTML string with applied styles
console.log(text.htmlify());

// Array of tokens of the input string
console.log(text.tokenize());

// Array of blocks of the input string
console.log(text.blockify());

Exported functions

import {
  blockify,
  htmlify,
  humanize,
  tokenize,
} from 'tm-text';

const text = '$s$00dFl$24fas$26fh$24fba$00dck';

// Input string without special tokens ('Flashback')
console.log(humanize(text));

// HTML string with applied styles
console.log(htmlify(text));

// Array of tokens of the input string
console.log(tokenize(text));

// Array of blocks of the input string
console.log(blockify(text));

๐Ÿ‘ Supported Tokens

TokenDescription
$000 - $fffAny color code that matches this pattern: \$[a-f0-9]{3}/i
$oBold text
$iItalic text
$tUppercase text
$sText shadow
$mNormal text width
$nNarrow text width
$wWide text width
$gReset color to default
$zReset text to default
$hInternal Link
$pInternal Link with player parameters
$lExternal Link
$<Opening block
$>Closing block
$$Dollar character

Please note that some of the behavior regarding block tags in conjuction with link tags will not be accurately represented by this library.
See these tests for a few examples of what this is referring to.

๐Ÿ’ป Development

Make sure to run yarn before attempting to run any of the commands listed below:

Run tsc in watch mode

yarn dev

Run type checking

yarn type-check

Run linter

yarn lint

Run tests

yarn test

Build project

yarn build

โค๏ธ Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch => git checkout -b feature/my-new-feature
  3. Commit your Changes => git commit -m 'feat(my-new-feature): add some awesome new feature'
  4. Push to the Branch => git push origin feature/my-new-feature
  5. Open a Pull Request

โญ License

Distributed under the MIT License. See LICENSE for more information.

๐ŸŒ Acknowledgments