Skip to content

Commit

Permalink
Fix table separator regex
Browse files Browse the repository at this point in the history
  • Loading branch information
robottokauf3 committed Jan 9, 2017
1 parent e52a4ce commit 482891b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ex_org/line.ex
Expand Up @@ -20,7 +20,7 @@ defmodule ExOrg.Line do
@keyword_regex ~r/^#\+(\S+):\s*(.*)$/

@list_item_regex ~r/^(\s*)([-+]|[0-9]+\.)\s+(.*)$/
@table_separator_regex ~r/^\s*\|[-+|]+\|\s*$/
@table_separator_regex ~r/^\s*\|-.*$/
@table_row_regex ~r/^\s*(\|.*\|)\s*$/

@doc """
Expand Down

0 comments on commit 482891b

Please sign in to comment.