1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

2077 Commits

Author SHA1 Message Date
bafb77172b livereload: Simplify conditional 2016-03-20 19:42:10 +01:00
2c5e4f7640 helpers: Support EXTENSION_BACKSLASH_LINE_BREAK for Blackfriday
Exposed as "backslashLineBreak" and enabled by default
as upstream have done.

Fixes #1935
2016-03-20 04:21:16 +08:00
4c4ce55217 helpers: Fix minor typo in content_test.go 2016-03-20 04:12:53 +08:00
0a768ec95f Simplify GetDottedRelativePath 2016-03-19 17:17:17 +01:00
8d86f1ec6e Return early from parseOptions 2016-03-19 17:12:10 +01:00
02e50c0126 Remove duplicate doArithmetic 2016-03-18 23:18:40 +01:00
42b302fc6b Revert "Add Codebeat badge"
Will have to review the rules on this code report  before people start sending PRs based on this.

This reverts commit c50c66879d7140311bcd6bfcb3fb5122d2b3f809.
2016-03-17 23:50:42 +01:00
3529152efe Return early from appendThemeTemplates 2016-03-17 23:36:11 +01:00
c50c66879d Add Codebeat badge 2016-03-17 23:28:41 +01:00
0ec8fc5490 Add Go Report Card badge to README 2016-03-17 23:24:24 +01:00
21054f730a source: Consolidate filepath.Split calls 2016-03-17 20:11:29 +01:00
df44b1930a tpl: Send actual values to in from intersect
The `intersect` function uses `in` to avoid adding duplicates to the
resulting set.  We were passing `reflect.Value` items when we should
have been using `Value.Interface()` to send the actual data structure.
This fixes that.

See #1952
2016-03-17 20:09:43 +01:00
600558273e tpl: Add missing printf param in t.Errorf call 2016-03-17 20:07:41 +01:00
b0326a1c0f tpl: Treat booleans as set in default function
Booleans and `default` don't really make sense together, so we'll always treat
booleans as "set" and return the given value.
2016-03-16 20:05:48 +01:00
b5c718a4de docs: Fix typos in functions.md and contributing.md 2016-03-16 13:04:41 +01:00
575ae1b3f9 Remove CircleCI badge for now 2016-03-15 19:04:24 +01:00
58802de313 No block support in shortcodes
So no need to check them.
2016-03-15 10:22:08 +01:00
3a2a4c3b07 tpl: Make the safeHTML and cousins accept more than strings 2016-03-14 22:27:40 +01:00
70739c972e Remove unnecessary type conversions 2016-03-14 20:35:50 +01:00
3a82ae7114 parser: Unexport some internals 2016-03-14 17:52:11 +01:00
5d915e7e96 helpers: Unexport some internals 2016-03-14 17:27:15 +01:00
aedb13b219 tpl: Fix race condition in regexp cache
Protect regular expression cache with a mutex.

Fixes #1973
2016-03-14 16:58:08 +01:00
f6c3ca8b2a transform: Remove unused code 2016-03-14 15:46:20 +01:00
263daaeabc target: Remove unused code 2016-03-14 15:44:45 +01:00
4ada1cab4d source: Remove unused code 2016-03-14 15:43:51 +01:00
df3f2af0a8 parser: Remove unused code 2016-03-14 15:42:59 +01:00
dea185aa9b hugolib: Remove unused code 2016-03-14 15:41:03 +01:00
c21dc16dbe commands: Remove unused code 2016-03-14 15:24:42 +01:00
91ffc76b24 helpers: Remove unused code 2016-03-14 15:20:36 +01:00
0fb31e4a82 Create an alias from shortcode.Page.Site to shortcode.Site
Fixes #1976
2016-03-14 14:10:15 +01:00
734dd1c4d0 Bump Pygment version to 2.1.3
Fixes #1969
2016-03-13 22:16:00 +01:00
542e220cc4 Make tests green on both Pygments 2.0.2 and 2.1.3
See #1969
2016-03-13 22:06:51 +01:00
988962e8b5 Add Pygments 2.0.2 to CircleCI build
Hugo tests fail with 2.1.*, that have to be fixed before we upgrade,  see #1969
2016-03-13 13:45:46 +01:00
989c7487eb Add emojify to the template func smoke tests 2016-03-12 16:53:39 +01:00
612c61146d Docs: move tutorial screenshots in their own subfolder 2016-03-12 13:08:46 +01:00
a103d58162 Docs: update Windows install instructions
- 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-12 13:02:54 +01:00
6fb4e0718a Docs: add Aerobatic as a deployment option in the Introduction 2016-03-12 12:19:56 +01:00
d9049752dc Docs: add tutorial for Hosting on Bitbucket 2016-03-12 12:19:31 +01:00
153dccc0e8 Add debugging steps for no variables defined 2016-03-12 21:44:50 +13:00
0ab4162413 Ability to config layout and content dir via cli
fixes spf13/hugo#1598
2016-03-11 23:42:27 +01:00
cafb784799 Add emoji support
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-11 15:51:37 -06:00
5926c6c8d5 Update showcase entry and article link to softinio.com 2016-03-11 22:31:59 +01:00
b8d3651242 tpl: Add replaceRE function
This commit addes a `replaceRE` template function.  Regexp patterns are compiled
once and cached.
2016-03-11 19:59:18 +01:00
e9008b91fa Allow picking a specific file out of a gist 2016-03-11 18:29:07 +01:00
7cd69aaae8 Exit with error code on any error
Fixes #740
2016-03-11 10:57:13 +01:00
077b0fa71f Add package prefix to the commit message guidelines 2016-03-11 10:30:17 +01:00
0667d8a0f5 Add engineering.mongodb.com to the showcase 2016-03-10 21:46:12 +01:00
941b4caf57 tpl: Add Copyright reference to the Go authors
Also a reference to the `index`issue in Go's issue tracker.
2016-03-10 21:00:53 +01:00
6cb032b67e Docs: use Shekhar Gulati's Hugo tutorial as quickstart guide 2016-03-10 20:36:54 +01:00
2d0650dbd9 tpl: Add custom index function
This commit adds a custom index template function that deviates from the stdlib
simply by not returning an "index out of range" error if an array, slice or
string index is out of range.  Instead, we just return nil values.  This should
help make the new default function more useful for Hugo users.

Fixes #1949
2016-03-10 17:47:59 +01:00