mx 0.1.173

A Swiss army knife for Claude Code and multi-agent toolkits
1
2
3
4
5
6
7
8
9
-- strip-links.lua — Pandoc Lua filter for mx docs LLM output
--
-- Replaces hyperlinks with their display text. The LLM markdown
-- output has no HTML pages to link to, so .html hrefs are meaningless.
-- Stripping links keeps the prose readable without dead references.

function Link(el)
  return el.content
end