From 74387b98632c75b06d15d83ad5359b9daf0f5dcb Mon Sep 17 00:00:00 2001
From: Kevin Brown
Date: Sat, 30 Jan 2016 18:09:01 -0500
Subject: [PATCH] Switched examples to use Jekyll's highlighting
This fixes some bugs that were present in the old Prettify highlighter
when there was a mix of JavaScript and HTML in the same code block. Now
with Rouge, the highlighter used by Jekyll, these cases are properly
handled and HTML no longer looks strange.
This does not convert all of the code blocks over, because there are
still some code blocks which double as the actual JavaScript code
powering the example that need to be migrated.
---
docs/_includes/examples/basics.html | 17 ++++-----
docs/_includes/examples/data.html | 37 ++++++++-----------
docs/_includes/examples/disabled-results.html | 7 +---
docs/_includes/examples/hide-search.html | 7 +---
.../examples/localization-rtl-diacritics.html | 20 +++-------
docs/_includes/examples/matcher.html | 8 +---
docs/_includes/examples/multiple-max.html | 8 +---
docs/_includes/examples/placeholders.html | 1 -
.../examples/programmatic-control.html | 1 -
docs/_includes/examples/tags.html | 8 +---
.../themes-templating-responsive-design.html | 23 ++++--------
docs/_includes/examples/tokenizer.html | 8 +---
12 files changed, 50 insertions(+), 95 deletions(-)
diff --git a/docs/_includes/examples/basics.html b/docs/_includes/examples/basics.html
index b2030739..5cd1ca19 100644
--- a/docs/_includes/examples/basics.html
+++ b/docs/_includes/examples/basics.html
@@ -22,19 +22,19 @@
@@ -67,7 +67,11 @@ $(".js-example-data-array-selected").select2({
that should be displayed.
-
+{% highlight html linenos %}
+
+{% endhighlight %}
You can configure how Select2 searches for remote data using the
@@ -76,15 +80,7 @@ $(".js-example-data-array-selected").select2({
options documentation for ajax.
-
-
-
- Select2 will pass any options in the ajax object to
- jQuery's $.ajax function, or the transport
- function you specify.
-
-
-
-
-
+{% endhighlight %}
+
+ Select2 will pass any options in the ajax object to
+ jQuery's $.ajax function, or the transport
+ function you specify.
+
Select2 will do its best to resolve the percent width specified via a
@@ -102,10 +101,4 @@ $(".js-example-templating").select2({
Select2 is using a percent based width is to inline the
style declaration into the tag.