|
Warning: this is an htmlized version!
The original is here, and the conversion rules are here. |
-- This file:
-- https://anggtwu.net/LUA/CodePdfFiles1.lua.html
-- https://anggtwu.net/LUA/CodePdfFiles1.lua
-- (find-angg "LUA/CodePdfFiles1.lua")
-- Author: Eduardo Ochs <eduardoochs@gmail.com>
--
-- (defun e () (interactive) (find-angg "LUA/CodePdfFiles1.lua"))
bigstr = ee_readfile "~/books/__analysis/__analysis.el"
pat = "^%(code%-pdf%-page +\"(.-)\" +\"(.-)\"%)"
pat2 = "^~/books/__analysis/(.-)"
A1 = Set.new()
A2 = Set.new()
--[[
* (eepitch-lua51)
* (eepitch-kill)
* (eepitch-lua51)
dofile "CodePdfFiles1.lua"
for _,li in ipairs(splitlines(bigstr)) do
local c,d = li:match(pat)
if c then
A1:add(c,d)
local fname0 = d:match(pat2)
if fname0 then
print(c,fname0)
A2:add(c,fname0)
end
end
end
print(c,d) end
end
--]]
-- Local Variables:
-- coding: utf-8-unix
-- End: