Skip to content

Commit

Permalink
make textile not eat basics of furry communication
Browse files Browse the repository at this point in the history
  • Loading branch information
Meow committed Sep 10, 2021
1 parent f91190c commit 9a1c84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/philomena/textile/lexer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 9a1c84d

Please sign in to comment.