151 lines
5.1 KiB
XML
151 lines
5.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
This file is part of GtkSourceView
|
|
|
|
Author: Yevgen Muntyan <muntyan@tamu.edu>
|
|
Copyright (C) 2008 Yevgen Muntyan <muntyan@tamu.edu>
|
|
|
|
GtkSourceView is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
GtkSourceView is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
-->
|
|
<language id="t2t" _name="txt2tags" version="2.0" _section="Markup">
|
|
<metadata>
|
|
<property name="globs">*.t2t</property>
|
|
<property name="line-comment-start">%</property>
|
|
</metadata>
|
|
|
|
<styles>
|
|
<style id="comment" _name="Comment"/>
|
|
<style id="option" _name="Option"/>
|
|
<style id="option-name" _name="Option Name" map-to="def:keyword"/>
|
|
<style id="header" _name="Header" map-to="def:keyword"/>
|
|
<style id="section" _name="Section" map-to="def:keyword"/>
|
|
<style id="section-1" _name="Section 1" map-to="t2t:section"/>
|
|
<style id="section-2" _name="Section 2" map-to="t2t:section"/>
|
|
<style id="section-3" _name="Section 3" map-to="t2t:section"/>
|
|
<style id="section-4" _name="Section 4" map-to="t2t:section"/>
|
|
<style id="section-5" _name="Section 5" map-to="t2t:section"/>
|
|
<style id="anchor" _name="Anchor" map-to="t2t:section"/>
|
|
<style id="italic" _name="Italic"/>
|
|
<style id="bold" _name="Bold"/>
|
|
<style id="verbatim" _name="Verbatim"/>
|
|
<style id="verbatim-block" _name="Verbatim Block"/>
|
|
</styles>
|
|
|
|
<definitions>
|
|
<context id="header" first-line-only="true" style-ref="header">
|
|
<match>.+</match>
|
|
</context>
|
|
|
|
<context id="options">
|
|
<include>
|
|
<context id="option" style-ref="option">
|
|
<match>^(%!\s*(?:[Tt]arget|[Ee]ncoding|[Oo]ptions|[Pp](?:ost|re)proc|[Ii]nclude(?:conf)?|[Ss]tyle|[Gg]uicolors)(?:\(\S+\))?)\s*:.*</match>
|
|
<include>
|
|
<context id="option-name" sub-pattern="1" style-ref="option-name"/>
|
|
</include>
|
|
</context>
|
|
<context id="invalid-option" style-ref="def:error">
|
|
<match>^%!.*</match>
|
|
</context>
|
|
</include>
|
|
</context>
|
|
|
|
<context id="comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
|
|
<start>^%</start>
|
|
</context>
|
|
|
|
<context id="sections">
|
|
<include>
|
|
<context id="section-1">
|
|
<match>^(=(?!=).*(?<!=)=)(?!=)(\[.*\])?</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="section-1"/>
|
|
<context sub-pattern="2" style-ref="anchor"/>
|
|
</include>
|
|
</context>
|
|
<context id="section-2">
|
|
<match>^(==(?!=).*(?<!=)==)(?!=)(\[.*\])?</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="section-2"/>
|
|
<context sub-pattern="2" style-ref="anchor"/>
|
|
</include>
|
|
</context>
|
|
<context id="section-3">
|
|
<match>^(===(?!=).*(?<!=)===)(?!=)(\[.*\])?</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="section-3"/>
|
|
<context sub-pattern="2" style-ref="anchor"/>
|
|
</include>
|
|
</context>
|
|
<context id="section-4">
|
|
<match>^(====(?!=).*(?<!=)====)(?!=)(\[.*\])?</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="section-4"/>
|
|
<context sub-pattern="2" style-ref="anchor"/>
|
|
</include>
|
|
</context>
|
|
<context id="section-5">
|
|
<match>^(=====(?!=).*(?<!=)=====)(?!=)(\[.*\])?</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="section-5"/>
|
|
<context sub-pattern="2" style-ref="anchor"/>
|
|
</include>
|
|
</context>
|
|
</include>
|
|
</context>
|
|
|
|
<context id="italic">
|
|
<match>//(.*?)//</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="italic"/>
|
|
</include>
|
|
</context>
|
|
|
|
<context id="bold">
|
|
<match>\*\*(.*?)\*\*</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="bold"/>
|
|
</include>
|
|
</context>
|
|
|
|
<context id="verbatim">
|
|
<match>``(.*?)``</match>
|
|
<include>
|
|
<context sub-pattern="1" style-ref="verbatim"/>
|
|
</include>
|
|
</context>
|
|
|
|
<context id="verbatim-block" style-ref="verbatim-block" style-inside="true">
|
|
<start>^```$</start>
|
|
<end>^```$</end>
|
|
</context>
|
|
|
|
<context id="t2t" class="no-spell-check">
|
|
<include>
|
|
<context ref="header"/>
|
|
<context ref="sections"/>
|
|
<context ref="options"/>
|
|
<context ref="comment"/>
|
|
<context ref="italic"/>
|
|
<context ref="bold"/>
|
|
<context ref="verbatim"/>
|
|
<context ref="verbatim-block"/>
|
|
</include>
|
|
</context>
|
|
</definitions>
|
|
</language>
|