// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
namespace TheArtOfDev.HtmlRenderer.Core.Entities
{
///
/// Controls the way styles are generated when html is generated.
///
public enum HtmlGenerationStyle
{
///
/// styles are not generated at all
///
None = 0,
///
/// style are inserted in style attribute for each html tag
///
Inline = 1,
///
/// style section is generated in the head of the html
///
InHeader = 2
}
}