diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-30 19:50:41 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-06-07 09:27:42 +0200 |
commit | 80c65ea8f3a9be9238125b7941ae7c875ea9a07c (patch) | |
tree | e14bbda97b9ecd0b145ca2cbf7996b8fd31bb033 /library/Text_Highlighter/html.xml | |
parent | 3a2a7d05084b1f61b5167b287e9c8bf520a4ca5f (diff) | |
download | volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.tar.gz volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.tar.bz2 volse-hubzilla-80c65ea8f3a9be9238125b7941ae7c875ea9a07c.zip |
move code syntax highlighting to plugin
Diffstat (limited to 'library/Text_Highlighter/html.xml')
-rw-r--r-- | library/Text_Highlighter/html.xml | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/library/Text_Highlighter/html.xml b/library/Text_Highlighter/html.xml deleted file mode 100644 index 58d51fc5b..000000000 --- a/library/Text_Highlighter/html.xml +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0"?> -<!-- $Id: html.xml,v 1.1 2007-06-03 02:35:28 ssttoo Exp $ --> - -<highlight lang="html" case="no"> - - <authors> - <author name="Andrey Demenev" email="demenev@gmail.com"/> - </authors> - - - <default innerClass="code" /> - - <region name="comment" delimClass="comment" innerClass="comment" - start="\<!--" end="--\>"> - </region> - - <region name="tag" delimClass="brackets" innerClass="code" start="\<[\?\/]?" end="[\/\?]?\>"> - <contains block="tagname"/> - <contains region="param"/> - <contains block="paramname"/> - </region> - - <block name="tagname" match="(?<=[\<\/?])[\w\-\:]+" innerClass="reserved" contained="yes"/> - - <block name="paramname" match="[\w\-\:]+" innerClass="var" contained="yes"/> - - <block name="entity" match="(&)[\w\-\.]+;" innerClass="special" /> - - <region name="param" start=""" end=""" delimClass="quotes" innerClass="string" contained="yes"> - <contains block="entity"/> - </region> - -</highlight> |