brevno-suite/hugo
10 years agoAnother link in the same page
Ivan Fraixedes [Sat, 14 Feb 2015 20:20:06 +0000 (20:20 +0000)]
Another link in the same page

10 years agoFixed invalid link to partials
Ivan Fraixedes [Sat, 14 Feb 2015 20:08:50 +0000 (20:08 +0000)]
Fixed invalid link to partials

10 years agoUpdate docs so that `figure` includes the `class` parameter.
Joseph Kaptur [Sat, 7 Feb 2015 05:21:56 +0000 (00:21 -0500)]
Update docs so that `figure` includes the `class` parameter.

10 years agoAdd 'config' command to list site configuration
bep [Sun, 1 Feb 2015 21:05:47 +0000 (22:05 +0100)]
Add 'config' command to list site configuration

Fixes #871

10 years agoPut back static theme conditional
spf13 [Sat, 14 Feb 2015 23:30:15 +0000 (18:30 -0500)]
Put back static theme conditional

10 years ago[commands/new.go] Update theme.toml etc.
Anthony Fok [Sun, 8 Feb 2015 15:11:04 +0000 (08:11 -0700)]
[commands/new.go] Update theme.toml etc.

- Add copyright years and author to the top of the file

- Write the current year from time.Now() to LICENSE.md

- Correct comment regarding `os.MkdirAll(p, 0777)`

- In createConfig(), split the `map[string]string` definition into
  multiple lines to facilitate future expansion.  Also add a trailing
  slash to sample "baseurl" definition.

- Update theme.toml template to match that listed at
  https://github.com/spf13/hugoThemes/blob/master/README.md#themetoml

  See #883 for an equivalent `struct` implementation

10 years agoRemove nohup.out committed by accident
bep [Thu, 12 Feb 2015 13:31:44 +0000 (14:31 +0100)]
Remove nohup.out committed by accident

10 years agoDoc Data Files: Add section about themes and expanded the example a bit
bep [Thu, 12 Feb 2015 08:09:35 +0000 (09:09 +0100)]
Doc Data Files: Add section about themes and expanded the example a bit

10 years agoRemove now superfluous conditional
bep [Wed, 11 Feb 2015 23:09:04 +0000 (00:09 +0100)]
Remove now superfluous conditional

10 years agoFix broken data dir test
bep [Wed, 11 Feb 2015 20:55:11 +0000 (21:55 +0100)]
Fix broken data dir test

10 years agoTemporarily disable broken test
bep [Wed, 11 Feb 2015 19:33:19 +0000 (20:33 +0100)]
Temporarily disable broken test

10 years agoAdd data files support in themes
bep [Wed, 11 Feb 2015 19:24:56 +0000 (20:24 +0100)]
Add data files support in themes

If duplicate keys, the main data dir wins.

Fixes #892

10 years agoChange "ctrl+c" to "Ctrl+C"
Anthony Fok [Thu, 29 Jan 2015 21:19:12 +0000 (14:19 -0700)]
Change "ctrl+c" to "Ctrl+C"

10 years agoFix typo: GetJson -> GetCsv
midinastasurazz [Wed, 11 Feb 2015 04:45:13 +0000 (05:45 +0100)]
Fix typo: GetJson -> GetCsv

10 years agoAdd showcase entry for consequently.org
Greg Restall [Wed, 11 Feb 2015 02:41:45 +0000 (13:41 +1100)]
Add showcase entry for consequently.org

Consequently.org is a personal site for an academic, with a blog, list
of publications, classes and talks, all managed by hugo.

10 years agoMake # survice Url cleaning
bep [Tue, 10 Feb 2015 18:13:45 +0000 (19:13 +0100)]
Make # survice Url cleaning

To enable anchors in Urls.

Fixes #888

10 years agoUpdate release notes for v0.13
spf13 [Tue, 10 Feb 2015 15:58:20 +0000 (10:58 -0500)]
Update release notes for v0.13

10 years agoAvoid converting summary to []byte and back to string
bep [Tue, 10 Feb 2015 13:37:29 +0000 (14:37 +0100)]
Avoid converting summary to []byte and back to string

10 years agoFix alias for data files doc
bep [Mon, 9 Feb 2015 15:58:12 +0000 (16:58 +0100)]
Fix alias for data files doc

10 years agoAdd docs for Data Files
bep [Mon, 9 Feb 2015 15:52:52 +0000 (16:52 +0100)]
Add docs for Data Files

Fixes #887

10 years agoBetter error message for data-file parsing errors
bep [Mon, 9 Feb 2015 15:07:30 +0000 (16:07 +0100)]
Better error message for data-file parsing errors

10 years agoDataDir: Minor polish and add missing tests
bep [Sun, 8 Feb 2015 20:09:14 +0000 (21:09 +0100)]
DataDir: Minor polish and add missing tests

Also, now logs an ERROR on duplicate keys, instead of returning an error and make sure sub-folders take presedence in data dir.

10 years agoReads data files inside data/ and makes data available in .Site.Data
Erlend Klakegg Bergheim [Tue, 20 Jan 2015 22:08:01 +0000 (23:08 +0100)]
Reads data files inside data/ and makes data available in .Site.Data

Fixes #476.

Conflicts:
hugolib/site.go

10 years ago[Docs] Say which directory to clone the hugoThemes
Anthony Fok [Mon, 9 Feb 2015 02:42:59 +0000 (19:42 -0700)]
[Docs] Say which directory to clone the hugoThemes

On http://gohugo.io/overview/quickstart/, explicitly state
that hugoThemes is to be cloned from within the working directory,
like it is stated on http://gohugo.io/themes/installing/.

Fixes #886

10 years agoparser.FormatSanitize() MetaDataFormat for date too
Anthony Fok [Sun, 8 Feb 2015 16:50:01 +0000 (09:50 -0700)]
parser.FormatSanitize() MetaDataFormat for date too

So that the date would come out correctly with
variations like `MetaDataFormat = "YAML"` in addition to
the normally expected `MetaDataFormat = "yaml"`.

Fixes #865.

10 years agoUse buffer pool in StripHTML
bep [Fri, 6 Feb 2015 14:35:45 +0000 (15:35 +0100)]
Use buffer pool in StripHTML

Allocates less memory:

benchmark              old ns/op     new ns/op     delta
BenchmarkStripHTML     6572          6695          +1.87%

benchmark              old allocs     new allocs     delta
BenchmarkStripHTML     5              4              -20.00%

benchmark              old bytes     new bytes     delta
BenchmarkStripHTML     848           737           -13.09%

Compared to 0.12:

benchmark              old ns/op     new ns/op     delta
BenchmarkStripHTML     10210         6695          -34.43%

benchmark              old allocs     new allocs     delta
BenchmarkStripHTML     6              4              -33.33%

benchmark              old bytes     new bytes     delta
BenchmarkStripHTML     1456          737           -49.38%

10 years agoLog ERROR on missing baseurl
bep [Fri, 6 Feb 2015 09:39:54 +0000 (10:39 +0100)]
Log ERROR on missing baseurl

Fixes #877

10 years agoAdd benchmark test for StripHTML
bep [Fri, 6 Feb 2015 09:00:42 +0000 (10:00 +0100)]
Add benchmark test for StripHTML

go test -test.run=NONE -bench=".*" -test.benchmem=true ./helpers

Old vs new impl (string.Replace vs string.Replacer):

benchmark              old ns/op     new ns/op     delta
BenchmarkStripHTML     10210         6572          -35.63%

benchmark              old allocs     new allocs     delta
BenchmarkStripHTML     6              5              -16.67%

benchmark              old bytes     new bytes     delta
BenchmarkStripHTML     1456          848           -41.76%

10 years agoFix Truncate
bep [Thu, 5 Feb 2015 20:44:15 +0000 (21:44 +0100)]
Fix Truncate

TruncateWordsToWholeSentence knows if the summary is truncated, so let "him" decide.

Fixes #880

10 years agoReplace 4 strings.Replace with 1 strings.Replacer
bep [Thu, 5 Feb 2015 17:31:11 +0000 (18:31 +0100)]
Replace 4 strings.Replace with 1 strings.Replacer

Consumes less memory, slightly faster.

10 years agoAdd memprofile to pprof benchmark
bep [Thu, 5 Feb 2015 14:48:09 +0000 (15:48 +0100)]
Add memprofile to pprof benchmark

10 years agoAvoid calling strings.Fields multiple times with same content
bep [Wed, 4 Feb 2015 23:38:50 +0000 (00:38 +0100)]
Avoid calling strings.Fields multiple times with same content

This should be a relief for big sites.

10 years agoBuild PageMenus only once
bep [Wed, 4 Feb 2015 20:27:27 +0000 (21:27 +0100)]
Build PageMenus only once

10 years agoTighten README for the sloppy reader
Mary Anthony [Sun, 1 Feb 2015 05:00:18 +0000 (21:00 -0800)]
Tighten README for the sloppy reader

Tighten README for the sloppy reader

Tighten README for the sloppy reader

Fixing heads

tigheten markdown

tighten markdown

tighten markdown

tinker with headings

tinker with wording

fixing period spacing

moving the any dir stuff into the feature section

tweak overview

tweak overview

fixed option too

fix break:

10 years agoAvoid panic on unknown markup
bep [Sun, 1 Feb 2015 21:29:46 +0000 (22:29 +0100)]
Avoid panic on unknown markup

Fixes #863

10 years agoScratch doc: Use the special $ variable to prevent confusion
bep [Sun, 1 Feb 2015 19:36:43 +0000 (20:36 +0100)]
Scratch doc: Use the special $ variable to prevent confusion

10 years agoUse .Site.Params.description as fallback for social partials
bep [Sun, 1 Feb 2015 18:56:21 +0000 (19:56 +0100)]
Use .Site.Params.description as fallback for social partials

10 years agoOptimize for the common case in Blackfriday config
bep [Sat, 31 Jan 2015 22:45:38 +0000 (23:45 +0100)]
Optimize for the common case in Blackfriday config

10 years agoPrint template parsing errors to aid troubleshooting
Anthony Fok [Fri, 30 Jan 2015 23:56:25 +0000 (16:56 -0700)]
Print template parsing errors to aid troubleshooting

Added a new Template.PrintErrors() function call,
used in hugolib/site.go#Process() so it does not clutter
up `go test -v ./...` results.

Special thanks to @tatsushid for mapping out the call trace
which makes it a lot easier to find the appropriate places
to place the Template.PrintErrors() call.

Fixes #316

10 years agoFix defaults for Blackfriday
Naoya Inada [Sat, 31 Jan 2015 17:24:00 +0000 (02:24 +0900)]
Fix defaults for Blackfriday

10 years agoAdd doc for Scratch
bep [Sat, 31 Jan 2015 20:33:34 +0000 (21:33 +0100)]
Add doc for Scratch

10 years agoAdd writable context to Node
bep [Fri, 26 Dec 2014 20:18:26 +0000 (21:18 +0100)]
Add writable context to Node

The variable scope in the Go templates makes it hard, if possible at all, to write templates with counter variables or similar state.

This commit fixes that by adding a writable context to Node, backed by a map: Scratch.

This context has three methods, Get, Set and Add. The Add is tailored for counter variables, but can be used for any built-in numeric values or strings.

10 years agoPrevent site config being overwritten
bep [Sat, 31 Jan 2015 18:14:13 +0000 (19:14 +0100)]
Prevent site config being overwritten

Fixed #867

10 years ago[Docs] Fix more missing `.` in example `partial` calls
Anthony Fok [Sat, 31 Jan 2015 14:27:42 +0000 (07:27 -0700)]
[Docs] Fix more missing `.` in example `partial` calls

10 years agoFixed syntax error in 404.html template code
Dan Hatch [Thu, 29 Jan 2015 20:18:19 +0000 (14:18 -0600)]
Fixed syntax error in 404.html template code

10 years agoUpdating shortcode imports & site test to work with new buffer pool functions
spf13 [Sat, 31 Jan 2015 06:06:04 +0000 (01:06 -0500)]
Updating shortcode imports & site test to work with new buffer pool functions

10 years agoMerge branch 'master' of github.com:spf13/hugo
spf13 [Sat, 31 Jan 2015 06:04:28 +0000 (01:04 -0500)]
Merge branch 'master' of github.com:spf13/hugo

10 years agoSome more .Date.IsZero checks in internal templates
bep [Fri, 30 Jan 2015 21:05:03 +0000 (22:05 +0100)]
Some more .Date.IsZero checks in internal templates

10 years agoRemove _default prefix from SEO templates
bep [Fri, 30 Jan 2015 20:58:18 +0000 (21:58 +0100)]
Remove _default prefix from SEO templates

10 years agopage rendering and writing using BBP
spf13 [Fri, 30 Jan 2015 20:05:05 +0000 (12:05 -0800)]
page rendering and writing using BBP

10 years agoUse .Date.IsZero to skip unset date in embedded templates
Anthony Fok [Fri, 30 Jan 2015 13:24:44 +0000 (06:24 -0700)]
Use .Date.IsZero to skip unset date in embedded templates

Use `{{ if not .Date.IsZero }}` to print dates only when they are
defined.  This is to avoid things like

    <lastBuildDate>Mon, 01 Jan 0001 00:00:00 +0000</lastBuildDate>

and

    <lastmod>0001-01-01T00:00:00+00:00</lastmod>

showing up in index.xml (RSS) and sitemap.xml.

Pipe dates with ±hh:mm time zone through `safeHtml`
to prevent the `+` sign from turning into `&#43;`.

Also make some shuffling to avoid blank lines in the output.

10 years agoUse strings instead of byte arrays for replaceShortcodeTokens tests
Jeffrey Tolar [Thu, 29 Jan 2015 03:39:59 +0000 (21:39 -0600)]
Use strings instead of byte arrays for replaceShortcodeTokens tests

10 years agoUse a regular expression in replaceShortcodeTokens
Jeffrey Tolar [Thu, 29 Jan 2015 03:11:41 +0000 (21:11 -0600)]
Use a regular expression in replaceShortcodeTokens

This fixes a bug where a shortcode needs to be expanded multiple times,
which can arise in practice when using reference links.

10 years agosite's XML generation using BBP
spf13 [Fri, 30 Jan 2015 19:51:06 +0000 (11:51 -0800)]
site's XML generation using BBP

10 years agopage source creation using BBP
spf13 [Fri, 30 Jan 2015 19:42:02 +0000 (11:42 -0800)]
page source creation using BBP

10 years agotransform chain using BBP
spf13 [Fri, 30 Jan 2015 19:39:06 +0000 (11:39 -0800)]
transform chain using BBP

10 years agotemplate render with BBP
spf13 [Fri, 30 Jan 2015 19:25:54 +0000 (11:25 -0800)]
template render with BBP

10 years agoshortcodes using BBP
spf13 [Fri, 30 Jan 2015 19:19:46 +0000 (11:19 -0800)]
shortcodes using BBP

10 years agoAdding BufferPool. Implementing BP in ReaderTo{Bytes,String}().
spf13 [Fri, 30 Jan 2015 19:12:07 +0000 (11:12 -0800)]
Adding BufferPool. Implementing BP in ReaderTo{Bytes,String}().

10 years agourl_path => urlPath
bep [Fri, 30 Jan 2015 15:21:46 +0000 (16:21 +0100)]
url_path => urlPath

10 years agoFix for issue 839 and 490 on Windows
Dan Hersam [Thu, 29 Jan 2015 18:30:51 +0000 (13:30 -0500)]
Fix for issue 839 and 490 on Windows

The paths were seen as changed but not static because of the backslashes in
ev.Name. Once the backslashes were added, I discovered that the JSON
sent to livereload was invalid and failed to work because it had backslashes.

Hence the code to replace the backslashes from the path to make them work
in JSON and for the URL.

With this fix, changes to a stylesheet are shown on the page, and if it's a
single file that changed, it's reflected in the browser without reloading the whole
page.

10 years ago[Docs] Complete the transition from "indexes" to "taxonomies" (almost)
Anthony Fok [Thu, 29 Jan 2015 19:34:56 +0000 (12:34 -0700)]
[Docs] Complete the transition from "indexes" to "taxonomies" (almost)

Also mention `.Site.Indexes` → `.Site.Taxonomies` as well as
the upcoming `.Site.Recent` → `.Site.Pages` transitions.

10 years ago[Docs] Copyediting
Anthony Fok [Wed, 28 Jan 2015 02:17:09 +0000 (19:17 -0700)]
[Docs] Copyediting

 * Add meta author, description and generator tags
 * Add Hugo version beside the logo and in the footer
 * Suggest the user to run `go get -u -v` to update dependencies
 * Requires Go 1.3+ rather than Go 1.1+
 * Improve rendering/formatting in some places
 * Add trailing slash to URLs where appropriate
 * GitHub redirects all http requests to https, update accordingly

10 years ago[Docs] Use OptiPNG to shrink PNG images losslessly
Anthony Fok [Tue, 27 Jan 2015 11:52:14 +0000 (04:52 -0700)]
[Docs] Use OptiPNG to shrink PNG images losslessly

So they load slightly faster.  :-)

10 years agoSome housekeeping of the Showcase and Press pages
Anthony Fok [Tue, 27 Jan 2015 10:25:52 +0000 (03:25 -0700)]
Some housekeeping of the Showcase and Press pages

10 years agoAdd .mailmap to get a more correct author log
bep [Wed, 28 Jan 2015 15:50:36 +0000 (16:50 +0100)]
Add .mailmap to get a more correct author log

10 years agoignore root path, no need strip traling slash
fundon [Wed, 28 Jan 2015 07:18:09 +0000 (15:18 +0800)]
ignore root path, no need strip traling slash

10 years agoVersion uses binary name instead of hugo
Dan Hersam [Wed, 28 Jan 2015 01:09:10 +0000 (20:09 -0500)]
Version uses binary name instead of hugo

On Windows the binary name is hugo.exe and running hugo version results in
this error:
    GetFileAttributesEx D:\Dev\Go\gopath\bin\hugo: The system cannot find the file specified.

This fixes that error and allows the binary name to be something other
than hugo on any OS.

10 years agoAdded three videos to documentation.
Dan Hersam [Tue, 27 Jan 2015 22:14:19 +0000 (17:14 -0500)]
Added three videos to documentation.

Created shortcode for YouTube videos and made the videos responsive in the
stylesheet.

10 years agoUse runtime.GOOS to identify Windows specific path tests
bep [Tue, 27 Jan 2015 22:01:32 +0000 (23:01 +0100)]
Use runtime.GOOS to identify Windows specific path tests

10 years ago[doc] Improve paginator doc
bep [Tue, 27 Jan 2015 20:56:45 +0000 (21:56 +0100)]
[doc] Improve paginator doc

10 years agoReplace assert.Equal(true/false) with assert.True/False
bep [Tue, 27 Jan 2015 18:47:22 +0000 (19:47 +0100)]
Replace assert.Equal(true/false) with assert.True/False

10 years agoDo not panic on permission denied
bep [Tue, 27 Jan 2015 15:51:24 +0000 (16:51 +0100)]
Do not panic on permission denied

Replace panic with FATAL logging and graceful shutdown.

Fixes #837

10 years agoSplit Windows and Unix specific path tests
bep [Tue, 27 Jan 2015 13:03:48 +0000 (14:03 +0100)]
Split Windows and Unix specific path tests

10 years agoTemporarily comment out breaking Windows test case
bep [Tue, 27 Jan 2015 11:12:35 +0000 (12:12 +0100)]
Temporarily comment out breaking Windows test case

10 years agoIntroduce FilepathPathBridge
bep [Tue, 27 Jan 2015 10:44:41 +0000 (11:44 +0100)]
Introduce FilepathPathBridge

This commit introduces the new interface FilepathPathBridge to remove some code that differs only in their use of either the path or filepath package.

10 years agoAdd more tests to helper
bep [Tue, 27 Jan 2015 09:15:57 +0000 (10:15 +0100)]
Add more tests to helper

10 years agoImprove pagination testing
bep [Tue, 27 Jan 2015 00:27:07 +0000 (01:27 +0100)]
Improve pagination testing

* Add missing pagination test cases
* Remove some unreachable code paths
* Fix some corner cases

10 years agoLinkify release notes
bep [Mon, 26 Jan 2015 19:41:36 +0000 (20:41 +0100)]
Linkify release notes

10 years agoSet detault for Paginate to 10
bep [Mon, 26 Jan 2015 14:26:19 +0000 (15:26 +0100)]
Set detault for Paginate to 10

10 is a better default than 0, since no paginator pages will be created unles referenced by a `.Paginator`.

See #750

10 years agoAdd documentation for pagination
bep [Mon, 26 Jan 2015 13:56:26 +0000 (14:56 +0100)]
Add documentation for pagination

See #750

10 years agoAdd Bootstrap-compatible pagination.html
bep [Mon, 26 Jan 2015 12:34:12 +0000 (13:34 +0100)]
Add Bootstrap-compatible pagination.html

See #750

10 years agoAdd pagination to release notes
bep [Mon, 26 Jan 2015 12:06:32 +0000 (13:06 +0100)]
Add pagination to release notes

10 years agoAdd pagination support for home page, sections and taxonomies
bep [Sat, 27 Dec 2014 13:11:19 +0000 (14:11 +0100)]
Add pagination support for home page, sections and taxonomies

Two new configuration properties, `Paginate` (default `0`) and `PaginatePath` (default `page`) are added.

Setting `paginate` to a positive value will split the list pages for the home page, sections and taxonomies into chunks of size of the `paginate` property.

A `.Paginator` is provided to help building a pager menu.

There are two ways to configure a `.Paginator`:

1. The simplest way is just to call `.Paginator.Pages` from a template. It will contain the pages for "that page" (`.Data.Pages` will (like today) contain all the pages).
2. Select a sub-set of the pages with the available template functions and pass the slice to `.Paginate` : `{{ range (.Paginate (where .Data.Pages "Type" "post")).Pages }}`

**NOTE:** For a given Node, it's one of the options above. It's perfectly legitimate to iterate over the same pager more than once, but it's static and cannot change.

The `.Paginator` contains enough information to build a full-blown paginator interface.

The pages are built on the form (note: BLANK means no value, i.e. home page):

```
[SECTION/TAXONOMY/BLANK]/index.html
[SECTION/TAXONOMY/BLANK]/page/1/index.html => redirect to  [SECTION/TAXONOMY/BLANK]/index.html
[SECTION/TAXONOMY/BLANK]/page/2/index.html
....
```

Fixes #96

10 years agoAdd site-wide/per-page [blackfriday] `extensions` option
Naoya Inada [Sun, 25 Jan 2015 11:08:02 +0000 (20:08 +0900)]
Add site-wide/per-page [blackfriday] `extensions` option

10 years agoWrong URL for Github Pages
Wade Wegner [Sun, 25 Jan 2015 21:53:21 +0000 (14:53 -0700)]
Wrong URL for Github Pages

10 years agoMove s.prepUrl() before prepending BaseUrl.
Jonathan Anderson [Sun, 25 Jan 2015 11:39:28 +0000 (08:09 -0330)]
Move s.prepUrl() before prepending BaseUrl.

When we have an absolute menu url specified in the config file
(e.g., `menu: { main: { name: "News", url: "/news" } }`),
its menu entry is generated by prefixing it with the BaseUrl.
The result is then run through prepUrl(), which uses helpers.Urlize to
convert urls such as 'My First Link' to 'my-first-link'.

The behaviour is backwards: we do not want to run helpers.Urlize on the
BaseUrl, only on the absolute component. Currently, a BaseUrl such as
'http://my.edu/ENG101' will be converted to 'http://my.edu/eng101',
resulting in broken links in all of my menus.

This commit switches the URL prep and BaseUrl prepending actions around. I
would argue that these URLs shouldn't be run through prepUrl anyway
because the site developer has specified them explicitly in a config file
and might be surprised for, e.g., URLs to change case, but that's another
commit for another time.

10 years agoCorrect wercker URL
Kartik Singhal [Sun, 25 Jan 2015 15:08:27 +0000 (20:38 +0530)]
Correct wercker URL

10 years agoFix inverse notation
Naoya Inada [Sun, 25 Jan 2015 06:38:14 +0000 (15:38 +0900)]
Fix inverse notation

10 years agoMake Blackfriday smart fractions to really default to `true`
Anthony Fok [Sat, 24 Jan 2015 20:49:17 +0000 (13:49 -0700)]
Make Blackfriday smart fractions to really default to `true`

Fix my own bug in Pull Request #829,
commit eb686352b1785844778e1cba8c69b85079e3044f

10 years agoAdd site-wide/per-page [blackfriday] `fractions` option
Anthony Fok [Sat, 24 Jan 2015 19:37:02 +0000 (12:37 -0700)]
Add site-wide/per-page [blackfriday] `fractions` option

Make Blackfriday's `HTML_SMARTYPANTS_FRACTIONS` option
user-configurable.  Defaults to `true` as before.  See
discussions at:

http://discuss.gohugo.io/t/any-way-to-disable-smart-fractions/328

Thanks to @bjornerik and @spf13 for laying the groundwork
making it easy to expose Blackfriday's underlying configurable
options.

10 years agoFix for page.GetParam() for JSON and TOML maps
Anthony Fok [Sat, 24 Jan 2015 11:44:35 +0000 (04:44 -0700)]
Fix for page.GetParam() for JSON and TOML maps

Setting per-page Blackfriday angledQuotes did not work
with TOML or JSON front matter, but it does work with YAML.

It turns out that page.Params("blackfriday") returns
type map[interface{}]interface{} for YAML, but
type map[string]interface{} for JSON and TOML.

This patch updates page.GetParam() to catch the latter,
with an error message if page.GetParam() does not recognize
a type.  A test is also added.

10 years agoUpgrade from gopkg.in/yaml.v1 to gopkg.in/yaml.v2
Anthony Fok [Sat, 24 Jan 2015 11:30:00 +0000 (04:30 -0700)]
Upgrade from gopkg.in/yaml.v1 to gopkg.in/yaml.v2

10 years agoHandle empty front matter in archetype.
Jonathan Anderson [Sat, 24 Jan 2015 01:26:29 +0000 (21:56 -0330)]
Handle empty front matter in archetype.

If an archetype has deliberately empty front matter (e.g., to suppress
generation of the 'draft' field or to force a particular front matter type
instead of the default TOML), we should handle it gracefully rather than
panic ("assignment to entry in nil map").

10 years ago[Docs]: Add new press/blog coverage about Hugo
Anthony Fok [Fri, 23 Jan 2015 18:46:39 +0000 (11:46 -0700)]
[Docs]: Add new press/blog coverage about Hugo

10 years agoFix RelPermalink() and Urls in menus vs canonifyUrls
bep [Fri, 12 Dec 2014 19:28:28 +0000 (20:28 +0100)]
Fix RelPermalink() and Urls in menus vs canonifyUrls

canonifyUrls=true, RelPermalink and baseUrl with sub-path did not work.

This fixes that by adding a check for canonifyUrl=trues=true in RelPermalink().

So given

- baseUrl "http://somehost.com/sub/"
- the path "some-path/file.html"

For canonifyUrls=false RelPermalink() returns "/sub/some-path/file.html"
For canonifyUrls=true RelPermalink() returns "/some-path/file.html"

In the last case, the Url will be made absolute and clickable in a later step.

This commit also makes the menu urls defined in site config releative. To make them work with canonifying of urls, the context root is prepended if canonifying is turned off.

Fixes #519
Fixes #711

10 years ago[Docs] Document the new (temp?) default of `canonifyurls = false`
Anthony Fok [Fri, 23 Jan 2015 01:04:07 +0000 (18:04 -0700)]
[Docs] Document the new (temp?) default of `canonifyurls = false`

Also add a **Caveat** on http://gohugo.io/tutorials/github-pages-blog/
warning the reader that a `canonifyurls = true` must be added
for Spencer's old example files to work.

Fixes #802

10 years agoRevert "Try to fix mysterious test failures on Travis"
Anthony Fok [Fri, 23 Jan 2015 00:46:29 +0000 (17:46 -0700)]
Revert "Try to fix mysterious test failures on Travis"

This reverts commit 71fe85df9b7193f790fbb5e3af415b176fdb6a4f.

See https://github.com/PuerkitoBio/purell/pull/5
for the cause of the mysterious `go test -v ./...` failure.

10 years agoTry to fix mysterious test failures on Travis
bep [Thu, 22 Jan 2015 23:36:47 +0000 (00:36 +0100)]
Try to fix mysterious test failures on Travis

10 years agoAdd menu tests for pages with both Yaml and Toml front matter
bep [Thu, 22 Jan 2015 16:23:01 +0000 (17:23 +0100)]
Add menu tests for pages with both Yaml and Toml front matter

See #817