Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doesdev/ascii-modifiers-map
Simple mapping of some sans-serif MathML characters to their plain counterparts
https://github.com/doesdev/ascii-modifiers-map
Last synced: about 20 hours ago
JSON representation
Simple mapping of some sans-serif MathML characters to their plain counterparts
- Host: GitHub
- URL: https://github.com/doesdev/ascii-modifiers-map
- Owner: doesdev
- Created: 2022-07-05T19:59:46.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T20:14:59.000Z (over 2 years ago)
- Last Synced: 2024-10-18T07:03:03.309Z (about 1 month ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ascii-modifiers-map
> ASCII Modifiers Map
Nothing more than a mapping of plain alphas to their [bold](https://www.w3.org/TR/MathML2/bold-sans-serif.html) and [italic](https://www.w3.org/TR/MathML2/sans-serif-italic.html) counterparts
# Install
```sh
$ npm install --save ascii-modifiers-map
```# Usage
```js
import { bold, italic } from 'ascii-modifiers-map'console.log(bold.a, bold.A, bold[0])
// note: italic does not contain numerics
console.log(italic.a, italic.A)
```# License
MIT © [Andrew Carpenter](https://github.com/doesdev)