From 787d20ef0cd476c7601e70c35c1f2a21db4a2ae2 Mon Sep 17 00:00:00 2001
From: alexweissman
Date: Thu, 31 Aug 2017 18:34:19 -0400
Subject: [PATCH] Fix code highlighting
---
docs/_includes/options/data/select.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/_includes/options/data/select.html b/docs/_includes/options/data/select.html
index b0be40a7..0e0c98f5 100644
--- a/docs/_includes/options/data/select.html
+++ b/docs/_includes/options/data/select.html
@@ -47,7 +47,7 @@
Select2 will convert the <option>
tag into a data object based on the following rules.
-{% highlight js linenos %}
+{% highlight txt linenos %}
{
"id": "value attribute" || "option text",
"text": "label attribute" || "option text",
@@ -59,7 +59,7 @@
And <optgroup>
tags will be converted into data objects using the following rules
-{% highlight js linenos %}
+{% highlight txt linenos %}
{
"text": "label attribute",
"children": [ option data object, ... ],