highmark-cli 0.0.207 → 0.0.209
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Highmark-CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Highmark's CLI tool.
|
|
4
|
+
|
|
5
|
+
This tool enables the creation of HTML from Markdown and Markdown style documents as well as providing a small server to view the HTML in a browser.
|
|
6
|
+
It can make use of Highmark's client in order to improve the reading experience, or the HTML can be viewed directly.
|
|
7
|
+
If you are not a developer and just want to install the package for immediate use then see the usage section below.
|
|
4
8
|
|
|
5
9
|
### Contents
|
|
6
10
|
|
|
@@ -11,7 +15,15 @@ Extensible, styleable Markdown.
|
|
|
11
15
|
|
|
12
16
|
## Introduction
|
|
13
17
|
|
|
14
|
-
|
|
18
|
+
Highmark is a document preparation system inspired by [Markdown](https://en.wikipedia.org/wiki/Markdown) and [TeX](https://en.wikipedia.org/wiki/TeX).
|
|
19
|
+
There are several packages in the distribution, of which only the CLI tool is needed by end users.
|
|
20
|
+
All the other packages are likely only of interest to prospective developers.
|
|
21
|
+
|
|
22
|
+
- [Highmark CLI](https://github.com/djalbat/highmark-cli)
|
|
23
|
+
- [Highmark Yapp](https://github.com/djalbat/highmark-yapp)
|
|
24
|
+
- [Highmark Fonts](https://github.com/djalbat/highmark-fonts)
|
|
25
|
+
- [Highmark Client](https://github.com/djalbat/highmark-clinet)
|
|
26
|
+
- [Highmark Markdown](https://github.com/djalbat/highmark-markdown)
|
|
15
27
|
|
|
16
28
|
## Installation
|
|
17
29
|
|
|
@@ -23,8 +35,17 @@ If you would like to contribute or would simply like to have a look at the code,
|
|
|
23
35
|
|
|
24
36
|
npm install
|
|
25
37
|
|
|
38
|
+
|
|
26
39
|
## Usage
|
|
27
40
|
|
|
41
|
+
The tool should be installed globally:
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
npm install --global highmark-cli@latest
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Dependening on your setup you may need to prepend `sudo` to the above.
|
|
48
|
+
|
|
28
49
|
These are the commands and options:
|
|
29
50
|
|
|
30
51
|
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "highmark-cli",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.209",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/highmark-cli",
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "Highmark's LIC tool.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/djalbat/highmark-cli"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"argumentative": "^2.0.28",
|
|
14
14
|
"express": "^4.19.2",
|
|
15
|
-
"highmark-client": "^0.0.
|
|
15
|
+
"highmark-client": "^0.0.54",
|
|
16
16
|
"highmark-markdown": "^0.0.247",
|
|
17
17
|
"lively-cli": "^2.0.59",
|
|
18
18
|
"necessary": "^13.6.6",
|