Did you know ... | Search Documentation: |
Predicate get_sgml_parser/2 |
on_begin
, etc.
callbacks from sgml_parse/2.sgml
,
html
, html5
, xhtml
, xhtml5
, xml
or xmlns
).begin
or end
) is caused by
an element written down using the shorttag notation (<tag/value/>
.#pcdata
is part of
Elements. If no element is open, the doctype is
returned.
This option is intended to support syntax-sensitive editors. Such an editor should load the DTD, find an appropriate starting point and then feed all data between the starting point and the caret into the parser. Next it can use this option to determine the elements allowed at this point. Below is a code fragment illustrating this use given a parser with loaded DTD, an input stream and a start-location.
..., seek(In, Start, bof, _), set_sgml_parser(Parser, charpos(Start)), set_sgml_parser(Parser, doctype(_)), Len is Caret - Start, sgml_parse(Parser, [ source(In), content_length(Len), parse(input) % do not complete document ]), get_sgml_parser(Parser, allowed(Allowed)), ...