-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
I used to use the CodeColor plugin for syntax highlighting. Here is an example post on my website using this plugin.
The syntax is similar to yours:
[cc lang="xml" first_line="1251" highlight="9-11,20-22,26-30" width="100%"]<!--This is used to insert the Treasures 1, Student or Special Event-->
<xsl:template match="Name | Event | Student" mode="FirstRow">
<xsl:param name="strClass"></xsl:param></xsl:template>
<xsl:if test="self::Event">
<xsl:attribute name="rowspan">3</xsl:attribute>
</xsl:if>
<xsl:value-of select=".">
<xsl:if test="self::Student">
<xsl:apply-templates select="../Assistant">
</xsl:apply-templates></xsl:if>
<!--This is used to insert the Treasures 2, Bible Reader or Student-->
<xsl:template match="Name | Reader | Student" mode="OtherRow">
<xsl:param name="strClass"></xsl:param></xsl:template>
<xsl:value-of select=".">
<xsl:if test="self::Student">
<xsl:apply-templates select="../Assistant">
</xsl:apply-templates></xsl:if>
<!--This is used to insert the Assistant-->
<xsl:template match="Assistant">
<xsl:value-of select=".">
</xsl:value-of></xsl:template>
[/cc]
The plugin is problematic in the sense that you must make sure you are in the Gutenberg "Code Editor" mode before opening the post to edit it. Otherwise must content is lost.
So is it possible to add "CodeColorer" to your compatibility list so that I can deactivate and unload the plugin?