pub enum HTMLSpecificDirective {
Meta,
ImageMap,
}Expand description
An enumeration of different HTML-specific directive types.
Variants§
Meta
The “meta” directive is used to specify HTML metadata stored in HTML META tags. “Metadata” is data about data, in this case data about web pages. Metadata is used to describe and classify web pages in the World Wide Web, in a form that is easy for search engines to extract and collate.
Within the directive block, a flat field list provides the syntax for metadata. The field name becomes the contents of the “name” attribute of the META tag, and the field body (interpreted as a single string without inline markup) becomes the contents of the “content” attribute.
Details: https://docutils.sourceforge.io/docs/ref/rst/directives.html#meta
ImageMap
Not implemented in docutils.
Details: https://docutils.sourceforge.io/docs/ref/rst/directives.html#imagemap