From 12c21861425c45c8f9767f1607e09203f0f58b3e Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Mon, 9 May 2016 15:43:16 -0400 Subject: [PATCH] Remove unused regular expressions for clarity --- markdown-mode.el | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/markdown-mode.el b/markdown-mode.el index 2bdf4f4a..4169b4ee 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -1286,38 +1286,6 @@ Group 4 matches the opening hash marks of an atx heading. Group 5 matches the text, without surrounding whitespace, of an atx heading. Group 6 matches the closing hash marks of an atx heading.") -(defconst markdown-regex-header-1-atx - "^\\(#\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 1 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-2-atx - "^\\(##\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 2 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-3-atx - "^\\(###\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 3 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-4-atx - "^\\(####\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 4 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-5-atx - "^\\(#####\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 5 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-6-atx - "^\\(######\\)[ \t]+\\(.*?\\)[ \t]*\\(#*\\)$" - "Regular expression for level 6 atx-style (hash mark) headers.") - -(defconst markdown-regex-header-1-setext - "^\\(.*\\)\n\\(=+\\)$" - "Regular expression for level 1 setext-style (underline) headers.") - -(defconst markdown-regex-header-2-setext - "^\\(.*\\)\n\\(-+\\)$" - "Regular expression for level 2 setext-style (underline) headers.") - (defconst markdown-regex-header-setext "^\\([^\r\n-].*\\)\n\\(=+\\|-+\\)$" "Regular expression for generic setext-style (underline) headers.")