-
- Downloads
There was a problem fetching the pipeline summary.
Merge branch 'blockquote-fence-filter' into 'master'
Add blockquote fence syntax to Markdown Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/16564 Before Markdown rendering happens, this will transform this: ``` Let me quote this here email: >>> Dear friend, How are you? Greetings, Me >>> ``` Into this, saving me from having to prefix all of those lines with `>` manually when I copy some multiline text from another medium: ``` Let me quote this here email: > Dear friend, > > How are you? > > Greetings, > > Me ``` See merge request !3954
Showing
- CHANGELOG 1 addition, 0 deletionsCHANGELOG
- doc/markdown/markdown.md 33 additions, 1 deletiondoc/markdown/markdown.md
- lib/banzai/filter/blockquote_fence_filter.rb 71 additions, 0 deletionslib/banzai/filter/blockquote_fence_filter.rb
- lib/banzai/pipeline/pre_process_pipeline.rb 2 additions, 1 deletionlib/banzai/pipeline/pre_process_pipeline.rb
- spec/fixtures/blockquote_fence_after.md 115 additions, 0 deletionsspec/fixtures/blockquote_fence_after.md
- spec/fixtures/blockquote_fence_before.md 131 additions, 0 deletionsspec/fixtures/blockquote_fence_before.md
- spec/lib/banzai/filter/blockquote_fence_filter_spec.rb 14 additions, 0 deletionsspec/lib/banzai/filter/blockquote_fence_filter_spec.rb
Loading
Please register or sign in to comment