markdown: parse emails and phone numbers (#365)

* markdown: parse emails and phone numbers

* phone parsing

* refactor
This commit is contained in:
Evgeny Poberezkin
2022-02-24 07:55:18 +00:00
committed by GitHub
parent b7a06dd0cf
commit 51f5982205
9 changed files with 105 additions and 86 deletions
-1
View File
@@ -152,7 +152,6 @@ markdownInfo =
[ green "Markdown:",
indent <> highlight "*bold* " <> " - " <> markdown Bold "bold text",
indent <> highlight "_italic_ " <> " - " <> markdown Italic "italic text" <> " (shown as underlined)",
indent <> highlight "+underlined+ " <> " - " <> markdown Underline "underlined text",
indent <> highlight "~strikethrough~" <> " - " <> markdown StrikeThrough "strikethrough text" <> " (shown as inverse)",
indent <> highlight "`code snippet` " <> " - " <> markdown Snippet "a + b // no *markdown* here",
indent <> highlight "!1 text! " <> " - " <> markdown (colored Red) "red text" <> " (1-6: red, green, blue, yellow, cyan, magenta)",