npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tm-text

v1.1.0

Published

Trackmania and Maniaplanet text parser and formatter

Downloads

71

Readme

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

|Token|Description| |-|-| |$000 - $fff|Any color code that matches this pattern: \$[a-f0-9]{3}/i| |$o|Bold text| |$i|Italic text| |$t|Uppercase text| |$s|Text shadow| |$m|Normal text width| |$n|Narrow text width| |$w|Wide text width| |$g|Reset color to default| |$z|Reset text to default| |$h|Internal Link| |$p|Internal Link with player parameters| |$l|External 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