summaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2016-03-21Add Scratch to shortcodeBjørn Erik Pedersen
Fixes #2000
2016-03-21Add plainify template functionBjørn Erik Pedersen
To strip away any HTML. May be useful for the .Title in head etc. People may shoot themself in the foot with this, maybe ... The replacement function is pretty fast.
2016-03-21docs: Draft of 0.16 release notesCameron Moore
Also included is an enhancement to the gh shortcode to support sending commit hashes by prepending "0x" to the hash.
2016-03-16tpl: Treat booleans as set in default functionCameron Moore
Booleans and `default` don't really make sense together, so we'll always treat booleans as "set" and return the given value.
2016-03-16docs: Fix typos in functions.md and contributing.mddigitalcraftsman
2016-03-12Docs: move tutorial screenshots in their own subfolderdigitalcraftsman
2016-03-12Docs: update Windows install instructionsJoeArizona
- updated the instructions to account for Windows 10 path editor - linked to third-party editors for pre-10 Windows - separated instructions for technical and non-technical users changed D drive paths to C drive since D is the default optical drive on most Windows systems - cut the assumption about 64-bit Windows since 32-bit binary is also available - cut the assumption about command line since we're giving GUI instructions to non-technical users - cut a bug in the doc where we had people typing D: at the command prompt *after* submitting `cd D:\Hugo\Sites.` Recommend snipping 386 and AMD from ZIP file names, since they don't add useful info and will just confuse novices.
2016-03-12Docs: add Aerobatic as a deployment option in the IntroductionJason Gowans
2016-03-12Docs: add tutorial for Hosting on BitbucketJason Gowans
2016-03-12Add debugging steps for no variables definedDaniel Compton
2016-03-11Add emoji supportBjørn Erik Pedersen
This uses the Emoji map from https://github.com/kyokomi/emoji -- but with a custom replacement implementation. The built-in are fine for most use cases, but in Hugo we do care about pure speed. The benchmarks below are skewed in Hugo's direction as the source and result is a byte slice, Kyokomi's implementation works best with strings. Curious: The easy-to-use `strings.Replacer` is also plenty fast. ``` BenchmarkEmojiKyokomiFprint-4 20000 86038 ns/op 33960 B/op 117 allocs/op BenchmarkEmojiKyokomiSprint-4 20000 83252 ns/op 38232 B/op 122 allocs/op BenchmarkEmojiStringsReplacer-4 100000 21092 ns/op 17248 B/op 25 allocs/op BenchmarkHugoEmoji-4 500000 5728 ns/op 624 B/op 13 allocs/op ``` Fixes #1891
2016-03-11Update showcase entry and article link to softinio.comSalar Rahmanian
2016-03-11tpl: Add replaceRE functionCameron Moore
This commit addes a `replaceRE` template function. Regexp patterns are compiled once and cached.
2016-03-11Allow picking a specific file out of a gistKonstantin Kliakhandler
2016-03-10Add engineering.mongodb.com to the showcaseAvery Rosen
2016-03-10Docs: use Shekhar Gulati's Hugo tutorial as quickstart guideShekhar Gulati
2016-03-10tpl: Add time note to default func descriptionCameron Moore
2016-03-10tpl: fix default functionCameron Moore
This commit fixes a few things: 1. `given` is now a variadic parameter so that piping works properly 2. add separate template tests to make sure piping works 3. support time values 4. add more tests of the dfault function
2016-03-10docs: add better default exampleCameron Moore
2016-03-10tpl: Add default functionCameron Moore
2016-03-10Add md5 and sha1 template funcsdigitalcraftsman
2016-03-09Add reference to parent shortcodeBjørn Erik Pedersen
Fixes #1936
2016-03-07Docs: fix missing words, tense in datadrivencontent.mdSteve Moser
2016-03-07Resize showcase thumbnail of h10n.medigitalcraftsman
2016-03-07Add viglug website to showcaseFabio Alessandro Locati
2016-03-07Add h10n.me to the showcaseHorst Gutmann
2016-03-07Add fale.io website to showcaseFabio Alessandro Locati
2016-03-06doc: Correct Scratch slice exampleBjørn Erik Pedersen
2016-03-06doc: Add some Scratch slice samplesBjørn Erik Pedersen
2016-03-06Add list support in ScratchBjørn Erik Pedersen
2016-03-06Add jsonify template funcBjørn Erik Pedersen
2016-02-29Docs: fix typo in tools sectionSamuel Debruyn
2016-02-29Remove superfluous FontAwesome filesdigitalcraftsman
2016-02-27Add template function slicedigitalcraftsman
2016-02-26Press: add "Comparison site built with Hugo"Thijs de Zoute
2016-02-24Press: add tutorial written by Shekhar GulatiShekhar Gulati
2016-02-24Press: add article from sitelabs.esMarq Martí
2016-02-24Docs: fix typo in introduction.mdAkagi201
2016-02-24Add cdnoverview.com to the showcaseWouter Spee
2016-02-24Docs: remove .Taxonomies from Page variablesPaul Koppen
The property seems to have never existed on Pages. Fixes #1865.
2016-02-24Docs: fix small typos in functions.mdThijs de Zoute
2016-02-24Docs: add "Minify Hugo Generated HTML" to pressRatson
2016-02-16Docs: add hugo-lunr to the tools sectiondigitalcraftsman
2016-02-14Docs: clarify that Amazon WS is, actually, AWSAndrew Langhorn
Amazon WS is an uncommon way of referring to Amazon Web Services, which is usually referred to either by its full name, or as AWS.
2016-02-14Add gntech.se to the showcaseGustav Näslund
2016-02-13Docs: fix typo in YouTube shortcode descriptiondigitalcraftsman
2016-02-13Add documentation for Google Analytics internal templateDarrel Herbst
Fixes #1654
2016-02-13Docs: fix Disqus shortname referenceCameron Moore
2016-02-13docs: Add guideline for showcase additionsdigitalcraftsman
2016-02-13Crop, resize and optimize shelan-tn.pngAnthony Fok
The original image was 2055px × 1252px, which was oversized and did not fit the required dimension of 600px × 400px (3:2 aspect ratio). To fix, the image was cropped and resized to the required dimension, and was further optimized: $ pngquant --nofs -v --speed 1 --quality 65-80 shelan-tn.png $ optipng -o7 -zm1-9 shelan-tn-or8.png $ mv shelan-tn-or8.png shelan-tn.png reducing its filesize from 334125 bytes to 26929 bytes. See #1831