mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 05:37:59 +01:00
make textile not eat basics of furry communication
This commit is contained in:
parent
f91190ce20
commit
9a1c84d6b7
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ defmodule Philomena.Textile.Lexer do
|
|||
em_delim = string("_") |> unwrap_and_tag(:em_delim)
|
||||
code_delim = string("@") |> unwrap_and_tag(:code_delim)
|
||||
ins_delim = string("+") |> unwrap_and_tag(:ins_delim)
|
||||
sup_delim = string("^") |> unwrap_and_tag(:sup_delim)
|
||||
sup_delim = lookahead_not(string("^"), string("^")) |> unwrap_and_tag(:sup_delim)
|
||||
sub_delim = string("~") |> unwrap_and_tag(:sub_delim)
|
||||
|
||||
del_delim =
|
||||
|
|
Loading…
Reference in a new issue