highmark-fonts
v1.0.93
Published
Computer Modern fonts for Highmark.
Downloads
561
Readme
Highmark Fonts
Computer Modern fonts for Highmark.
There are twenty fonts in total, five families each provided in regular, bold, italic and bold italic forms:
- Computer Modern Serif
- Computer Modern Sans
- Computer Modern Bright
- Computer Modern Concrete
- Computer Modern Typewriter
Admittedly there are a few other families, but they are not available in all of the aforementioned forms.
Contents
Introduction
Highmark is a document preparation system inspired by Markdown and TeX. There are several packages in the distribution.
- Highmark-CLI Highmark's CLI tool.
- Highmark Fonts Highmark with Fonts listings.
- Highmark Fonts Computer Modern fonts for Highmark.
- Highmark Client Highmark's bundled client for viewing HTML.
- Highmark Markdown Highmark's Markdown and Markdown Style languages.
Only the CLI tool is needed by end users. All of the other packages are likely only of interest to prospective developers.
Installation
If you would like to contribute or would simply like to have a look at the code, you can clone the repository with Git...
git clone https://github.com/djalbat/highmark-fonts.git
...and then install the dependencies with npm from within the project's root directory:
npm install
Example
There is a small development server that can be run from within the project's directory with the following command:
npm start
The example will then be available at the following URL:
http://localhost:8888
The source for the example can be found in the src/example.js
file and correspondingsrc/example
folder. You are encouraged to try the example whilst reading what follows. You can rebuild it on the fly with the following command:
npm run watch-debug
The development server will reload the page whenever you make changes.
One last thing to bear in mind is that this package is included by way of a relative rather than a package import. If you are importing it into your own application, however, you should use the standard package import.
Usage
Copy the font
directory to your own application. In order to make use of the fonts, the @font-face
CSS at-rules must be added:
import withStyle from "easy-with-style";
import { computerModernStyle } from "highmark-fonts";
const { renderStyle } = withStyle;
renderStyle(computerModernStyle());
You can pass a host
argument to the computerModernStyle()
function, if necessary. This will be prepended to the URLs of the font files. If you need further clarification then take a look at the source.
Building
Automation is done with npm scripts, have a look at the package.json
file. The pertinent commands are:
npm run build-debug
npm run watch-debug
Acknowledgements
The original Unicode Computer Modern fonts were created by Andrey V. Panov.
The Computer Modern CSS was adapted from Jonathan Häberle's computer-modern-web-font repository.