summaryrefslogtreecommitdiffstats
path: root/docs/themes
diff options
context:
space:
mode:
authorAlexandros <onedrawingperday@users.noreply.github.com>2018-06-09 12:13:36 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-06-09 11:13:36 +0200
commit65deb72dc4c9299416cf2d9defddb96dba4101fd (patch)
tree77b302c85e7be1402570fc2c525b1939d0853f56 /docs/themes
parentdc4226a8b27e03e31068fc945daab885d3819d04 (diff)
tplimpl: Remove speakerdeck shortcode
Fixes #4830
Diffstat (limited to 'docs/themes')
-rw-r--r--docs/themes/gohugoioTheme/src/js/hljs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/themes/gohugoioTheme/src/js/hljs.js b/docs/themes/gohugoioTheme/src/js/hljs.js
index 05e9acefe..c2252e783 100644
--- a/docs/themes/gohugoioTheme/src/js/hljs.js
+++ b/docs/themes/gohugoioTheme/src/js/hljs.js
@@ -12,7 +12,7 @@ hljs.registerLanguage('xml', require('highlight.js/lib/languages/xml'));
hljs.registerLanguage('html', require('highlight.js/lib/languages/handlebars'));
hljs.registerLanguage("go", function(e) {
- var t = { keyword: "code output note warning break default func interface select case map struct chan else goto package switch const fallthrough if range end type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune id autoplay Get", literal: "file download copy true false iota nil Pages with", built_in: "append cap close complex highlight copy imag len make new panic print println real recover delete Site Data tweet speakerdeck youtube ref relref vimeo instagram gist figure innershortcode" };
+ var t = { keyword: "code output note warning break default func interface select case map struct chan else goto package switch const fallthrough if range end type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune id autoplay Get", literal: "file download copy true false iota nil Pages with", built_in: "append cap close complex highlight copy imag len make new panic print println real recover delete Site Data tweet youtube ref relref vimeo instagram gist figure innershortcode" };
return { aliases: ["golang","hugo"], k: t, i: "</", c: [e.CLCM, e.CBCM, { cN: "string", v: [e.QSM, { b: "'", e: "[^\\\\]'" }, { b: "`", e: "`" }] }, { cN: "number", v: [{ b: e.CNR + "[dflsi]", r: 1 }, e.CNM] }, { b: /:=/ }, { cN: "function", bK: "func", e: /\s*\{/, eE: !0, c: [e.TM, { cN: "params", b: /\(/, e: /\)/, k: t, i: /["']/ }] }] }
});