Content deleted Content added
add hyphens and stuff |
whoops |
||
Line 222:
-- Dash with possible whitespace or Date separator (dash without whitespace)
foundPositionStart, foundPositionEnd, foundMatch = seekString:find('^(%s*
if (foundPositionStart) then
currentPosition = foundPositionEnd + 1 -- this is our new start ___location
Line 233:
end
-- Same by entity code - –
foundPositionStart, foundPositionEnd, foundMatch = seekString:find('^(%s*
if (foundPositionStart) then
currentPosition = foundPositionEnd + 1 -- this is our new start ___location
|