From c700e25ef2965146d2ed4abafee0825a8094280e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 19 Jun 2016 23:01:10 -0700 Subject: docs/_plugins/highlight_alt.rb: Use correct tag name in error message --- docs/_plugins/highlight_alt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/_plugins') diff --git a/docs/_plugins/highlight_alt.rb b/docs/_plugins/highlight_alt.rb index d1ed9ccff..ed6be57f5 100644 --- a/docs/_plugins/highlight_alt.rb +++ b/docs/_plugins/highlight_alt.rb @@ -30,11 +30,11 @@ module Jekyll @options[:linenos] = "inline" if @options.key?(:linenos) and @options[:linenos] == true else raise SyntaxError.new <<-eos -Syntax Error in tag 'highlight' while parsing the following markup: +Syntax Error in tag 'example' while parsing the following markup: #{markup} -Valid syntax: highlight [linenos] +Valid syntax: example eos end end -- cgit v1.2.3 From 4a00603b5a31ea5edc8b8a980924681cdbce907e Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sun, 19 Jun 2016 23:02:27 -0700 Subject: docs/_plugins/highlight_alt.rb: Ignore linenos option since it's broken Refs #20005 [skip sauce] --- docs/_plugins/highlight_alt.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_plugins') diff --git a/docs/_plugins/highlight_alt.rb b/docs/_plugins/highlight_alt.rb index ed6be57f5..bdcada251 100644 --- a/docs/_plugins/highlight_alt.rb +++ b/docs/_plugins/highlight_alt.rb @@ -27,7 +27,7 @@ module Jekyll @options[key.to_sym] = value || true end end - @options[:linenos] = "inline" if @options.key?(:linenos) and @options[:linenos] == true + @options[:linenos] = false else raise SyntaxError.new <<-eos Syntax Error in tag 'example' while parsing the following markup: -- cgit v1.2.3 From b73b0c559ec868753d0235f1bc526b83e2a2db58 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 25 Jun 2016 21:32:23 -0700 Subject: docs/_plugins/bugify.rb: Add support for MS Edge UserVoice ideas (#20176) [skip sauce] --- docs/_plugins/bugify.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/_plugins') diff --git a/docs/_plugins/bugify.rb b/docs/_plugins/bugify.rb index 0c5a0f5f5..5562dd5de 100644 --- a/docs/_plugins/bugify.rb +++ b/docs/_plugins/bugify.rb @@ -4,6 +4,7 @@ module Jekyll upstream_map = { "Bootstrap" => "https://github.com/twbs/bootstrap/issues/", "Edge" => ["https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/", "Edge issue"], + "UserVoice" => ["https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/", "Edge UserVoice idea"], "Mozilla" => ["https://bugzilla.mozilla.org/show_bug.cgi?id=", "Mozilla bug"], "Chromium" => ["https://bugs.chromium.org/p/chromium/issues/detail?id=", "Chromium issue"], "WebKit" => ["https://bugs.webkit.org/show_bug.cgi?id=", "WebKit bug"], -- cgit v1.2.3