Consider code like # # dom parse -simple -html $form doc # ... # return [$root asHTML]…
Show more
tdom sometimes html-escapes unknown tagsConsider code like## dom parse -simple -html $form doc# ...# return [$root asHTML]Unfortunately, this causes that some tags unknown to tdom(like <adp:icon>) are converted to escaped tags (< ...).This can be regarded as a bug. To avoid this problem, wesubstitute here the adp_tags in advance. This needs moreinvestigation in other cases.... The potential harm in thiscases here is very little, but probably, there are othercases as well where this might harm.
Show less