llmd 0.2.0 → 0.2.2
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 +2 -19
- package/dist/llmd +40 -40
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,22 +1,8 @@
|
|
|
1
1
|
# llmd
|
|
2
2
|
|
|
3
|
-
**Serve Markdown as
|
|
3
|
+
**Serve Markdown as HTML, instantly.**
|
|
4
4
|
|
|
5
|
-
A minimal CLI tool for viewing Markdown files in your browser with syntax highlighting, live reload, and
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm install -g llmd
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Or run directly without installing:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
npx llmd
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
Requires Node.js 22 or later.
|
|
5
|
+
A minimal CLI tool for viewing Markdown files in your browser with syntax highlighting, live reload, and optional event analytics. Built for developers reviewing LLM-generated documentation.
|
|
20
6
|
|
|
21
7
|
## Quick Start
|
|
22
8
|
|
|
@@ -38,9 +24,6 @@ That's it! The docs will open in your browser. Click through the sidebar to expl
|
|
|
38
24
|
- **Syntax highlighting** - Powered by Shiki
|
|
39
25
|
- **Live reload** - Watch mode reloads on file changes
|
|
40
26
|
- **Copy buttons** - One-click code copying
|
|
41
|
-
- **Dark/light themes** - With 9 font combinations
|
|
42
|
-
- **Fast** - Built with Bun, instant startup
|
|
43
|
-
- **Sidebar navigation** - Browse files with directory structure
|
|
44
27
|
- **Table of contents** - Auto-generated from headings
|
|
45
28
|
- **Usage Analytics** - Track which docs you view most (local-only, opt-in)
|
|
46
29
|
|