mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
re-add space/eos to stop tokens
This commit is contained in:
parent
e6f97ff4eb
commit
9e5d4e02d8
1 changed files with 3 additions and 1 deletions
|
@ -132,7 +132,9 @@ defmodule Textile.Lexer do
|
|||
string("!"),
|
||||
string(","),
|
||||
string("_") |> concat(choice([space(), eos()])),
|
||||
string("?") |> concat(choice([space(), eos()]))
|
||||
string("?") |> concat(choice([space(), eos()])),
|
||||
space(),
|
||||
eos()
|
||||
])
|
||||
|
||||
link_contents_start =
|
||||
|
|
Loading…
Reference in a new issue