Christopher Eliot [Tue, 14 Jul 2015 13:36:39 +0000 (09:36 -0400)]
Fix link to front matter
added leading backslash, changing [front matter](content/front-matter) to [front matter](/content/front-matter)
Clam- [Fri, 17 Jul 2015 13:29:58 +0000 (23:29 +1000)]
Fix unclear RSS template docs
The documentation for the RSS templating is a little unclear.
http://gohugo.io/templates/rss/
Some users may attempt to look for a ```__internal``` directory rather than assume that's the aforementioned "Hugo own template."
Here's my suggestion.
digitalcraftsman [Sat, 18 Jul 2015 10:23:52 +0000 (12:23 +0200)]
Add mention about .Hugo.Generator in 'Creating a theme' section
Edward Vielmetti [Thu, 16 Jul 2015 11:47:35 +0000 (07:47 -0400)]
Fix typo: "taxononomy" -> "taxonomy"
Bjørn Erik Pedersen [Thu, 16 Jul 2015 11:17:54 +0000 (13:17 +0200)]
Add paginator support for page groups
Fixed #1274
Valere JEANTET [Mon, 13 Jul 2015 20:07:04 +0000 (22:07 +0200)]
fix TestHomeNodeMenu test
Signed-off-by: Valere JEANTET <valere.jeantet@gmail.com>
Valere JEANTET [Thu, 25 Jun 2015 10:26:48 +0000 (12:26 +0200)]
Allow page.HasMenuCurrent() and node.HasMenuCurrent() to proceed with multi-level nested menus
Currently HasMenuCurrent only process the first 2 levels.
Bjørn Erik Pedersen [Mon, 13 Jul 2015 08:38:28 +0000 (10:38 +0200)]
Log missing theme as FATAL
See #1234
Scott C Wilson [Sun, 12 Jul 2015 17:25:43 +0000 (13:25 -0400)]
Checks to ensure theme directory, if specified, exists
See #1234
Bjørn Erik Pedersen [Sun, 12 Jul 2015 17:27:29 +0000 (19:27 +0200)]
Fix log message in test
Bjørn Erik Pedersen [Sun, 12 Jul 2015 09:28:19 +0000 (11:28 +0200)]
Optimize RuneCount
Do not create it unless used.
See #1266
Bjørn Erik Pedersen [Sun, 12 Jul 2015 09:05:37 +0000 (11:05 +0200)]
Add RuneCount to Page
Fixes #1266
Éli Marshal [Fri, 10 Jul 2015 22:53:03 +0000 (16:53 -0600)]
Omit protocol from embedded font resources
Fixes the mixed content errors and loads fonts when accessing
https://gohugo.io/
Arian Allenson M. Valdez [Thu, 9 Jul 2015 08:59:00 +0000 (16:59 +0800)]
Change arianv sourceLink to master branch
Arian Allenson M. Valdez [Thu, 9 Jul 2015 03:17:35 +0000 (11:17 +0800)]
Add learnoverpass
Arian Allenson M. Valdez [Thu, 9 Jul 2015 03:17:29 +0000 (11:17 +0800)]
Add arianv
Sam Debruyn [Wed, 8 Jul 2015 12:12:09 +0000 (14:12 +0200)]
add a showcase of sa.muel.be
Borys Borysenko [Wed, 8 Jul 2015 10:57:49 +0000 (13:57 +0300)]
[Docs] Press page. Fix URL
Andrew Brampton [Fri, 3 Jul 2015 21:53:50 +0000 (14:53 -0700)]
Add support for GitHub-flavoured markdown code fences for highlighting
This commit adds a new PygmentsCodeFences config option (default false), which if true will allow GitHub style backtick code fences around code, which will then be rendered by Pygments.
For example:
``` language
your code
```
can be used instead of {{< highlight language >}}your code {{< /highlight >}}.
Fixes #362
Andrew Brampton [Fri, 3 Jul 2015 21:51:43 +0000 (14:51 -0700)]
If no language is provided to Pygments, then try and guess it
Previously if no language was specified, then illegal args would be passed to pygments, for example `pygments -l -fhtml`, which would result in pygments printing an error.
kangkona [Sun, 5 Jul 2015 11:13:42 +0000 (19:13 +0800)]
Add a showcase of Kangkona
Rick Cogley [Wed, 8 Jul 2015 02:09:11 +0000 (11:09 +0900)]
Add how-to for foreign language month names
FYI @nicolinuxfr, added the month name example.
Rick Cogley [Wed, 8 Jul 2015 01:35:47 +0000 (10:35 +0900)]
Add Rick and eSolia's sites to the Hugo docs showcase
delputnam [Thu, 2 Jul 2015 14:04:17 +0000 (10:04 -0400)]
Added missing "Social" section to SiteInfo
I could be wrong here, but it looks to me like .Site.Social.facebook is used in tpl/template_embedded.go, but the variable is never set. I've added a line to initializeSiteInfo to map the info from config into this variable.
Marc-Antoine Ruel [Thu, 2 Jul 2015 15:58:38 +0000 (11:58 -0400)]
Document Page.RawContent in templates/variables/
Marc-Antoine Ruel [Thu, 2 Jul 2015 13:32:57 +0000 (09:32 -0400)]
Add Page.RawContent() to access raw Markdown as a string.
In particular, RawContent() excludes the metadata header.
This is necessary in the use case of embedding remarkjs.com slides, as it needs
the unprocessed Markdown content to generate the slides.
Tatsushi Demachi [Sat, 27 Jun 2015 17:15:42 +0000 (02:15 +0900)]
Add nil comparison to where tpl function
`where` template function's internal condition check function always
returns `false` when a target value doesn't exist or it's nil value but
this behavior makes it difficult to filter values which doesn't have a
particular parameter.
To solve it, this adds nil value comparison to the function.
`where Values ".Param.key" nil` like clause can be used for the case
above.
Only "=", "==", "eq", "!=", "<>", "ne" operators are allowed to be used
with `nil`. If an other operator is passed with `nil`, the condition
check function returns `false` like before.
Fix #1232
Bjørn Erik Pedersen [Sun, 28 Jun 2015 17:27:28 +0000 (19:27 +0200)]
Fix watcher detecting changes as static when no theme
There have been some changes to the ´helpers.GetThemesDirPath()´ so it now returns an empty string when no theme.
This is correct, but it broke the watch service (at lest on OSX), as `strings.HasPrefix("", "somestring") evaluates to true somehow, and content changes are incorrectly branded as static.
There are other issues in there, but that will come later ...
See #1236
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:27:47 +0000 (15:27 +0200)]
Add doc for new Blackfriday options
See #1220
See #1231
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:18:15 +0000 (15:18 +0200)]
Add config option for Blackfriday HTML_HREF_TARGET_BLANK
Fixes #1220
Bjørn Erik Pedersen [Sun, 28 Jun 2015 13:08:52 +0000 (15:08 +0200)]
Add option to disable Blackfriday LaTeX style dashes
Can be used in site config of per page front matter:
```
[blackfriday]
latexDashes = false
```
Fixes #1231
Bjørn Erik Pedersen [Sun, 28 Jun 2015 08:43:43 +0000 (10:43 +0200)]
404 is homeless
Fixes #1235
Mario Sanchez Carrion [Wed, 24 Jun 2015 02:03:47 +0000 (22:03 -0400)]
added thumbnail
Mario Sanchez Carrion [Sun, 21 Jun 2015 01:04:44 +0000 (21:04 -0400)]
Create mariosanchez.md
Submitting site for consideration in Hugo Showcase
tim [Fri, 26 Jun 2015 13:55:16 +0000 (15:55 +0200)]
add vamp.io site as showcase
Jonathan Anderson [Fri, 19 Jun 2015 13:30:34 +0000 (11:00 -0230)]
Use helpers.GetThemeDir() to find base templates.
Now that we have the helpers.GetThemeDir() function, use it instead of
calling directly into viper.
Jonathan Anderson [Fri, 19 Jun 2015 13:26:32 +0000 (10:56 -0230)]
Refactor theme path helper functions.
Reduce duplication (`x + FilePathSeparator + y` a few lines away from `filepath.Join(x, y)`) and add a `GetThemeDir()` function to get the current theme's directory.
Also add a comment complaining about the `GetThemesDirPath()` function, which doesn't seem to do what its name would suggest. This might be a candidate for deprecation?
Jonathan Anderson [Fri, 19 Jun 2015 01:29:08 +0000 (22:59 -0230)]
Add support for baseof.ace templates in themes.
When we find a template that requires a base template, we should also look
for that base template in the current theme.
Fixes #1215.
Piotr Kowalczuk [Thu, 25 Jun 2015 09:46:09 +0000 (11:46 +0200)]
Proper parsing structured array from yaml based FrontMatter
Bjørn Erik Pedersen [Mon, 22 Jun 2015 17:40:12 +0000 (19:40 +0200)]
Use pooled buffer in replaceShortcodes
Even as a copy at the end is needed, this consumes way less memory on Go 1.4.2:
```benchmark old ns/op new ns/op delta
BenchmarkParsePage 145979 139964 -4.12%
BenchmarkReplaceShortcodeTokens 633574 631946 -0.26%
BenchmarkShortcodeLexer 195842 187938 -4.04%
benchmark old allocs new allocs delta
BenchmarkParsePage 87 87 +0.00%
BenchmarkReplaceShortcodeTokens 9424 9415 -0.10%
BenchmarkShortcodeLexer 274 274 +0.00%
benchmark old bytes new bytes delta
BenchmarkParsePage 141830 141830 +0.00%
BenchmarkReplaceShortcodeTokens 35219 25385 -27.92%
BenchmarkShortcodeLexer 30178 30177 -0.00%
```
See #1148
Bjørn Erik Pedersen [Mon, 22 Jun 2015 18:25:17 +0000 (20:25 +0200)]
docs: make the named value Data File example simpler
Sebastian Krause [Mon, 15 Jun 2015 23:09:24 +0000 (01:09 +0200)]
Update datafiles.md
additional example for named data values
Bjørn Erik Pedersen [Sun, 21 Jun 2015 21:36:58 +0000 (23:36 +0200)]
Fix map-order dependent menu tests
Fixes #1222
Bjørn Erik Pedersen [Sun, 21 Jun 2015 21:09:39 +0000 (23:09 +0200)]
Print URL when failing menu test
See #1222
Bjørn Erik Pedersen [Sun, 21 Jun 2015 20:57:42 +0000 (22:57 +0200)]
Remove unused var
Bjørn Erik Pedersen [Sun, 21 Jun 2015 11:08:30 +0000 (13:08 +0200)]
Remove superfluous p-tags around shortcodes
This commit replaces the regexp driven `replaceShortcodeTokens` with a handwritten one.
It wasnt't possible to handle the p-tags case without breaking performance.
This fix actually improves in that area:
```
benchmark old ns/op new ns/op delta
BenchmarkParsePage 142738 142667 -0.05%
BenchmarkReplaceShortcodeTokens 665590 575645 -13.51%
BenchmarkShortcodeLexer 176038 181074 +2.86%
benchmark old allocs new allocs delta
BenchmarkParsePage 87 87 +0.00%
BenchmarkReplaceShortcodeTokens 9631 9424 -2.15%
BenchmarkShortcodeLexer 274 274 +0.00%
benchmark old bytes new bytes delta
BenchmarkParsePage 141830 141830 +0.00%
BenchmarkReplaceShortcodeTokens 52275 35219 -32.63%
BenchmarkShortcodeLexer 30177 30178 +0.00%
```
Fixes #1148
Bjørn Erik Pedersen [Sun, 21 Jun 2015 20:28:50 +0000 (22:28 +0200)]
Comment out mystery test
Fails on Travis in Go 1.3 + 1.5.
Will have to look into that one.
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:09 +0000 (15:01 +0200)]
Revert "add preliminary support for content/index.md file to be homepage content"
This reverts commit
5f84bc02cd9706af92311cc27ae01d2ffc1410fa.
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:06 +0000 (15:01 +0200)]
Revert "refactor and clean up site tests"
This reverts commit
99e250917ddc351d45adfeb81057ea3607d1b148.
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:02 +0000 (15:01 +0200)]
Revert "Move matchRender to test helpers file"
This reverts commit
32d91d616e99cd05b59644e292b29be415d5054f.
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:01:01 +0000 (15:01 +0200)]
Revert "Add tests for homepage content support"
This reverts commit
24351c58bedea72e4e113e2d2e5753a32ce2a0e3.
Bjørn Erik Pedersen [Sun, 21 Jun 2015 13:00:53 +0000 (15:00 +0200)]
Revert "Make .IsHome work when homepage as page"
This reverts commit
7e765cc1bd0ab06dbf05a467f3c648012265742b.
spf13 [Fri, 19 Jun 2015 14:07:47 +0000 (10:07 -0400)]
Make .IsHome work when homepage as page
spf13 [Wed, 17 Jun 2015 14:39:18 +0000 (10:39 -0400)]
Add tests for homepage content support
spf13 [Wed, 17 Jun 2015 14:38:46 +0000 (10:38 -0400)]
Move matchRender to test helpers file
spf13 [Tue, 2 Jun 2015 02:57:16 +0000 (22:57 -0400)]
refactor and clean up site tests
spf13 [Tue, 2 Jun 2015 02:14:36 +0000 (22:14 -0400)]
add preliminary support for content/index.md file to be homepage content
Bjørn Erik Pedersen [Tue, 16 Jun 2015 20:31:51 +0000 (22:31 +0200)]
Remove superfluous return
Bjørn Erik Pedersen [Tue, 16 Jun 2015 17:25:48 +0000 (19:25 +0200)]
Make removal of accents in taxonomy and section paths optional
And default off.
Fixes #1180
Rick Cogley [Sun, 7 Jun 2015 06:26:06 +0000 (15:26 +0900)]
Add new tutorial for multilingual sites
Simple tutorial showing one pattern for creating a multilingual site in
Hugo.
Ariejan de Vroom [Wed, 10 Jun 2015 22:12:27 +0000 (00:12 +0200)]
Update docs for `last` template function
Ariejan de Vroom [Wed, 10 Jun 2015 22:11:47 +0000 (00:11 +0200)]
Add `last` template function
`last` allows the user to select the last X items of
and array.
Ariejan de Vroom [Wed, 10 Jun 2015 21:58:57 +0000 (23:58 +0200)]
Refactor var name limit to index
Ariejan de Vroom [Wed, 10 Jun 2015 21:53:39 +0000 (23:53 +0200)]
Add `after` to template function documentation
Ariejan de Vroom [Wed, 10 Jun 2015 21:49:55 +0000 (23:49 +0200)]
Add `after` template function
Where `first` will return the first N items of a rangeable list,
`after` will return all items after the Nth item.
This allows the user to do something with the first N items and
something different with the remaining items after N.
Vincent Batoufflet [Sat, 13 Jun 2015 08:02:53 +0000 (10:02 +0200)]
Add Blackfriday definition lists extension support
bep [Fri, 12 Jun 2015 20:50:02 +0000 (22:50 +0200)]
Revert "Add some debug to failing menu test"
This reverts commit
becc627e1e55f08e04892212350fa4db72f5c43a.
bep [Thu, 11 Jun 2015 20:48:55 +0000 (22:48 +0200)]
Add some debug to failing menu test
bep [Thu, 11 Jun 2015 20:41:26 +0000 (22:41 +0200)]
Move Viper reset to correct level in menu tests
bep [Thu, 11 Jun 2015 19:22:35 +0000 (21:22 +0200)]
Reset Viper for every duplicate menu test iteration
David Calavera [Thu, 11 Jun 2015 03:29:12 +0000 (20:29 -0700)]
Make sure target destination has the right path separator.
Signed-off-by: David Calavera <david.calavera@gmail.com>
Ariejan de Vroom [Wed, 10 Jun 2015 22:22:22 +0000 (00:22 +0200)]
Let travis test against go-tip
bep [Sat, 6 Jun 2015 21:56:28 +0000 (23:56 +0200)]
Temp remove tip from Travis
There is one failing test there. It runs fine for me on tip locally (Linux).
Will reinsert this once tip gets into stable mode.
Tatsushi Demachi [Sat, 6 Jun 2015 15:21:14 +0000 (00:21 +0900)]
Fix substr tpl func's int type variant issue
`substr` template function takes one or two range arguments. Both
arguments must be int type values but if it is used with a calclation
function e.g. `add`, `len` etc, it causes a wrong type error.
This fixes the issue to allow the function to take other integer type
variant like `int64` etc.
This also includes a small fix on no range argument case.
Fix #1190
bep [Sat, 6 Jun 2015 18:57:11 +0000 (20:57 +0200)]
Silence chatty JSON test
bep [Wed, 3 Jun 2015 16:54:30 +0000 (18:54 +0200)]
Add some tests for IgnoreFiles
And log error on invalid regexp.
See #1189
bep [Wed, 3 Jun 2015 11:46:55 +0000 (13:46 +0200)]
Add some docs for IgnoreFiles
See #1189
bep [Wed, 3 Jun 2015 11:45:52 +0000 (13:45 +0200)]
Rename WatchIgnoreFiles to IgnoreFiles
Because this isn't just about server and watching.
See #1189
bep [Wed, 3 Jun 2015 11:37:57 +0000 (13:37 +0200)]
Add configurable list to ignore files in server watch
The following inside `config.toml` will ignore files ending with `.foo` and `.boo`.
```
watchIgnoreFiles = [ "\\.foo$", "\\.boo$" ]
```
The above is is a list of Reqular Expressions, but note the escaping of the `\` to make TOML happy.
Fixes #1189
Cyrill Schumacher [Thu, 28 May 2015 05:36:06 +0000 (15:36 +1000)]
GetJSON/GetCSV: Add retry on invalid content
The retry gets triggered when the parsing of the content fails.
Fixes #1166
bep [Sun, 31 May 2015 18:30:53 +0000 (20:30 +0200)]
Add PreserveTaxonomyNames flag
Before this commit, taxonomy names were hyphenated, lower-cased and normalized -- then fixed and titleized on the archive page.
So what you entered in the front matter isn't necessarily what you got in the final site.
To preserve backwards compability, `PreserveTaxonomyNames` is default `false`.
Setting it to `true` will preserve what you type (the first characters is made toupper for titles), but normalized in URLs.
This also means that, if you manually construct URLs to the archive pages, you will have to pass the Taxonomy names through the `urlize` func.
Fixes #1180
bep [Sat, 30 May 2015 12:46:58 +0000 (14:46 +0200)]
Remove accents in URLs
So the taxonomy `Gérard Depardieu` gives paths on the form `gerard-depardieu`.
Unfortunately this introduces two imports from the `golang.org/`, but Unicode-normalization isn't something we'd want to write from scratch.
See https://blog.golang.org/normalization
See #1180
bep [Sun, 31 May 2015 16:54:50 +0000 (18:54 +0200)]
Fix FullFilePath
Fixes #732
Artem Vorotnikov [Sun, 24 May 2015 13:48:46 +0000 (16:48 +0300)]
Allow custom RSS Uri for section and taxonomy feeds
Fixes #1147
vsopvsop [Fri, 29 May 2015 15:14:37 +0000 (20:44 +0530)]
Update introduction.md
bep [Sun, 31 May 2015 11:13:26 +0000 (13:13 +0200)]
Fix Windows Ace path issue
Ace doesn't like Windows style filepath separators.
Fixes #1178
bep [Sun, 31 May 2015 11:01:20 +0000 (13:01 +0200)]
Add some Ace test cases
See #1178
bep [Fri, 29 May 2015 09:31:23 +0000 (11:31 +0200)]
Extract Ace handling to a method
To prepare for some testing.
See #1178
bep [Thu, 28 May 2015 21:05:13 +0000 (23:05 +0200)]
Support `Fish and Chips` section
Section names are also used as the title of the list pages, but naming section folders as `Fish and Chips` and similar didn't work very well.
This commit fixes that.
This commit also changes the title casing of the section titles. Some may argue that this is a breaking change, but the old behaviour was also pretty broken,
even for languages that use title capitalizations, as it didn't follow any particular style guide, `fish and chips` became `Fish And Chips` etc.
Now it just turns the first letter into upper case, so `Fish and Chips` will be left as `Fish and Chips`.
People wanting the good old behaviour can use the `title` template func.
Fixes #1176
bep [Thu, 28 May 2015 01:19:59 +0000 (03:19 +0200)]
Add IsHome
To determine if a page is the "Home Page" has inspired lots of creativity in the template department.
This commit makes it simpler: IsHome will tell the truth.
bep [Thu, 28 May 2015 00:30:01 +0000 (02:30 +0200)]
Add some missing page permalink test cases
bep [Wed, 27 May 2015 18:41:25 +0000 (20:41 +0200)]
Never remove trailing slash in RelPermalink
Fixed #1174
bep [Wed, 27 May 2015 09:59:27 +0000 (11:59 +0200)]
docs: getting usage up to spec
Anthony Fok [Wed, 27 May 2015 03:45:50 +0000 (21:45 -0600)]
Add two articles about Hugo to the Press page
* http://jbrodriguez.io/mobile-friendly-website-2/
* http://blog.hypriot.com/post/moved-from-posthaven-to-hugo/
bep [Tue, 26 May 2015 21:08:32 +0000 (23:08 +0200)]
Make deprecated warning for this release more alert
bep [Tue, 26 May 2015 20:44:40 +0000 (22:44 +0200)]
Hyphenate DEV version
Tatsushi Demachi [Tue, 26 May 2015 10:33:32 +0000 (19:33 +0900)]
Add `time.Time` type support to `where` tpl func
`where` tpl function doesn't support `time.Time` type so if people want
to compare such values, it's required that these values are converted
into `int` and compare them.
This improves it. If `time.Time` values are passed to `where`, it
converts them into `int` internally, compares them and returns the
result.
See also
http://discuss.gohugo.io/t/future-posts-and-past-posts/1229/3
bep [Tue, 26 May 2015 08:52:00 +0000 (10:52 +0200)]
docs: add bepsays.com to showcase
Jeff Ramnani [Mon, 25 May 2015 19:16:10 +0000 (14:16 -0500)]
Document techniques for debugging templates.
This information was previously scattered around in the forums and
mailing list. Add it to the official docs to make things easier for new
users.
Fixes #1167
spf13 [Tue, 26 May 2015 01:47:41 +0000 (21:47 -0400)]
adding goxc config file