Package root
import "gitlab.com/zoralab/bissetii/pkg/internal/root"
Package root is the central control of Bissetii HTML codes.
This package controls various output generations including but not limited to output formats like HTML and AMP. It is responsible for generating Bissetii’s mediaTypes.toml data type file.
It is used across all its sub-packages.
Constants
HTML is the output format for vanilla HTML
const (
HTMLCode = "HTML"
HTMLName = "html"
HTMLSuffix = "html"
HTMLPrefix = ""
)
AMP is the output format for AMP HTML
const (
AMPCode = "AMP"
AMPName = "amp"
AMPSuffix = "amp.html"
AMPPrefix = "amp-"
)