Lines Matching refs:ehtml_expander
69 -export([ehtml_expand/1, ehtml_expander/1, ehtml_apply/2,
1917 ehtml_expander(X) -> function
1918 ehtml_expander_compress(flatten(ehtml_expander(X, [], [])), []).
1923 ehtml_expander(Ch, Before, After) when Ch >= 0, Ch =< 255 -> function
1925 ehtml_expander(Bin, Before, After) when is_binary(Bin) -> function
1928 ehtml_expander({ssi,File, Del, Bs}, Before, After) -> function
1937 ehtml_expander({pre_html, X}, Before, After) -> function
1940 ehtml_expander({Tag}, Before, After) -> function
1943 ehtml_expander({Tag, Attrs}, Before, After) -> function
1949 ehtml_expander({Tag, Attrs, Body}, Before, After) -> function
1950 ehtml_expander(Body,
1956 ehtml_expander(Var, Before, After) when is_atom(Var) -> function
1959 ehtml_expander([H|T], Before, After) -> function
1960 ehtml_expander(T, [ehtml_expander(H, [], [])|Before], After);
1961 ehtml_expander([], Before, After) -> function
2034 Expand = ehtml_expander(Expr),