move iclc paper under docs/

This commit is contained in:
alex 2025-06-14 23:26:59 +01:00
parent a7f044e1aa
commit 2cb22e94b5
27 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#!/usr/bin/env python3
import sys
from pandocfilters import toJSONFilter, RawBlock
def toMiniREPL(key, value, format, meta):
# print(value, file=sys.stderr)
if key == 'CodeBlock':
return RawBlock("markdown", "<MiniRepl tune={`" + value[1] + "`} />")
if __name__ == "__main__":
toJSONFilter(toMiniREPL)