Blackfriday Options taskLists default: trueBlackfriday flag: Purpose: false turns off GitHub-style automatic task/TODO list generation. smartypants default: true Blackfriday flag: HTML_USE_SMARTYPANTS Purpose: false disables smart punctuation substitutions, including smart quotes, smart dashes, smart fractions, etc. If true, it may be fine-tuned with the angledQuotes, fractions, smartDashes, and latexDashes flags (see below). smartypantsQuotesNBSP default: false Blackfriday flag: HTML_SMARTYPANTS_QUOTES_NBSP Purpose: true enables French style Guillemets with non-breaking space inside the quotes. angledQuotes default: falseBlackfriday flag: HTML_SMARTYPANTS_ANGLED_QUOTESPurpose: true enables smart, angled double quotes.
Read More »
Go templates format your dates according to a single reference time:
Mon Jan 2 15:04:05 MST 2006 You can think of MST as 07, thus making the reference format string a sequence of numbers. The following is taken directly from the Go docs:
Jan 2 15:04:05 2006 MST 1 2 3 4 5 6 -7 Hugo Date Templating Reference Each of the following examples show the reference formatting string followed by the string Hugo will output in your HTML.
Read More »
.URL string .Name string .Menu string .Identifier string .Pre template.HTML .Post template.HTML .Weight int .Parent string .Children Menu Note that menus also have the following functions available as well:
.HasChildren boolean Additionally, there are some relevant functions available to menus on a page:
.IsMenuCurrent (menu string, menuEntry *MenuEntry ) boolean .HasMenuCurrent (menu string, menuEntry *MenuEntry) boolean
Read More »
readdirs Directory for Reusable Content Files in this directory are:
Used in more than one place within the Hugo docs Used in Examples of readdir (i.e. in local file templates) These files are called using the readfile shortcode (source).
You can call this shortcode in the docs as follows:
{{% readfile file=”/path/to/file.txt” markdown="true” %}}markdown="true" is optional (default = "false") and parses the string through the Blackfriday renderer.
Read More »