HTMLFormat

struct defined in module Pollen


			HTMLFormat() <: Format

Format for HTML data. Supports both reading and writing.

Examples

Reading HTML:


			
			using Pollen
format = HTMLFormat()
node = Pollen.parse("<div class="group"><span>Hi there!</span></div>", format)

			LoadError("string", 3, ErrorException("syntax: cannot juxtapose string literal"))

			
			
			
			
			Pollen
			.
			

	
			render
			(
			node
			,
			 
			format
			)

			LoadError("string", 1, UndefVarError(:node))
Methods

There are 2 methods for Pollen.HTMLFormat:

util.jl:493