summaryrefslogtreecommitdiff
path: root/lib/rouge
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-03-13 12:17:07 -0600
committerDouwe Maan <douwe@selenight.nl>2017-03-14 15:29:00 -0600
commit6685cbeb99e58b6708aa338bf6d235c05695887b (patch)
treeaf5bf70e8e4ab7375b1a383d76c7bdaa2e1164fe /lib/rouge
parent6890327762eaeca572ada783804a9c7af01e6144 (diff)
downloadgitlab-ce-6685cbeb99e58b6708aa338bf6d235c05695887b.tar.gz
Document tag option and clarify spec
Diffstat (limited to 'lib/rouge')
-rw-r--r--lib/rouge/formatters/html_gitlab.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/rouge/formatters/html_gitlab.rb b/lib/rouge/formatters/html_gitlab.rb
index ec95ddf03ea..be0d97370d0 100644
--- a/lib/rouge/formatters/html_gitlab.rb
+++ b/lib/rouge/formatters/html_gitlab.rb
@@ -5,10 +5,9 @@ module Rouge
# Creates a new <tt>Rouge::Formatter::HTMLGitlab</tt> instance.
#
- # [+linenostart+] The line number for the first line (default: 1).
- def initialize(linenostart: 1, tag: nil)
- @linenostart = linenostart
- @line_number = linenostart
+ # [+tag+] The tag (language) of the lexer used to generate the formatted tokens
+ def initialize(tag: nil)
+ @line_number = 1
@tag = tag
end