Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export GUILE_AUTO_COMPILE=0
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ coverage/
*.lcov

# Node Modules dir
node_modules/
node_modules/

# Test snapshots
tests/__snapshots__/
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ I need for [my Lume site](https://urutau-ltd.org/).
[Lume TOC](https://lume.land/plugins/toc/) was beyond unusable for me and I'd
rather maintain a fork to keep doing things my way.

Also tests are Deno runtime dependent and the build system doesn't use deno
tasks but `maak` instead. You'll need either `nix` or `guix` for that.

### I don't care, I still want to use it

Install it via JSR with:
Expand Down
6 changes: 2 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"name": "@funcproglinux/markdown-it-toc-revived",
"version": "1.0.4",
"version": "1.0.5",
"license": "AGPL-3.0-or-later",
"exports": "./mod.ts",
"nodeModulesDir": "auto",
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/html": "jsr:@std/html@^1.0.7",
"@types/markdown-it": "npm:@types/markdown-it@^14.2.0",

"markdown-it": "npm:markdown-it@^14.3.0",
"markdown-it": "npm:markdown-it@^15.0.0",
"markdown-it-anchor": "npm:markdown-it-anchor@^9.2.1"
},
"publish": {
Expand Down
Loading