formatitko/util.py
Greenscreener eab36a19af A reimplementation of the command system.
Also transform now doesn't do the traversing by itself but is called by
panflute's walk.
2023-01-29 20:44:29 +01:00

10 lines
239 B
Python

from panflute import Element, Block, Inline
import re
def replaceEl(e: Element, r: Element) -> Element:
parent = e.parent
parent.content[e.index] = r
r.parent = parent
return r
def deleteEl(e: Element):
del e.parent.content[e.index]