diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-24 20:57:35 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-24 20:57:35 +0000 |
commit | b8ad3647ad99a64ffc6296883aa8135d462dd17b (patch) | |
tree | 52b01f122b014724783ce7f31761296e9d0f76c2 /lib | |
parent | c3c9703437a552700c2a6ca010b05cc56aa6d73a (diff) | |
parent | b7ed7d05a0b2aab9123c101a1a0558ae0f9bf7cc (diff) | |
download | gitlab-ce-b8ad3647ad99a64ffc6296883aa8135d462dd17b.tar.gz |
Merge branch 'fix-nested-tasks' into 'master'
Fix nested task lists
When nesting task list items, the parent item is wrapped in a `<p>` tag. Update the task list parser to handle these paragraph wrappers.
cc @sytse
See merge request !413
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/markdown.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/gitlab/markdown.rb b/lib/gitlab/markdown.rb index e02e5b9fc3d..f5e8267031c 100644 --- a/lib/gitlab/markdown.rb +++ b/lib/gitlab/markdown.rb @@ -352,11 +352,12 @@ module Gitlab # ActiveSupport::SafeBuffer, hence the `String.new` String.new(text).gsub(Taskable::TASK_PATTERN_HTML) do checked = $LAST_MATCH_INFO[:checked].downcase == 'x' + p_tag = $LAST_MATCH_INFO[:p_tag] if checked - "#{li_tag}#{checked_box}" + "#{li_tag}#{p_tag}#{checked_box}" else - "#{li_tag}#{unchecked_box}" + "#{li_tag}#{p_tag}#{unchecked_box}" end end end |