mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-25 14:34:33 +01:00
more adjacency
This commit is contained in:
parent
e24c3e812f
commit
ff27a0992f
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ defmodule Textile.MarkupLexer do
|
||||||
literal,
|
literal,
|
||||||
bracketed_markup_closing_tags,
|
bracketed_markup_closing_tags,
|
||||||
bracketed_markup_opening_tags |> lookahead_not(space()),
|
bracketed_markup_opening_tags |> lookahead_not(space()),
|
||||||
preceding_whitespace |> times(markup_opening_tags, min: 1),
|
preceding_whitespace |> times(markup_opening_tags, min: 1) |> lookahead_not(ending_sequence),
|
||||||
times(markup_closing_tags, min: 1) |> lookahead(choice([special_characters(), ending_sequence])),
|
times(markup_closing_tags, min: 1) |> lookahead(choice([special_characters(), ending_sequence])),
|
||||||
double_newline,
|
double_newline,
|
||||||
newline,
|
newline,
|
||||||
|
|
Loading…
Reference in a new issue