Differences From Artifact [a3dcc0807f]:
- File ext/toc.lua — part of check-in [9c67b0312c] at 2021-12-20 00:09:46 on branch trunk — split cortav into modules, enable use as library, create extension mechanism stub, fix up docs (user: lexi, size: 205) [annotate] [blame] [check-ins using]
To Artifact [ed743c91e7]:
- File ext/toc.lua — part of check-in [0c6a784678] at 2021-12-21 05:04:57 on branch trunk — add --version -V flag (user: lexi, size: 351) [annotate] [blame] [check-ins using]
1 1 local ct = require 'cortav' 2 2 local ss = require 'sirsem' 3 3 4 4 ct.ext.install { 5 5 id = 'toc'; 6 6 desc = 'provides a table of contents for HTML renderer plus generic fallback'; 7 + version = ss.version {0,1; 'devel'}; 8 + contributors = {{name='lexi hale', handle='velartrill', mail='lexi@hale.su', homepage='https://hale.su'}}; 7 9 directive = function(words) 8 10 9 11 end; 10 12 }