diff --git a/docs/_includes/options-new/core.html b/docs/_includes/options-new/core.html
new file mode 100644
index 00000000..63e15fd1
--- /dev/null
+++ b/docs/_includes/options-new/core.html
@@ -0,0 +1,8 @@
+
+ It is recommended that you declare your configuration options for Select2
+ when initializing Select2. You can also define your configuration options
+ by using the HTML5
+ This means that if you declare your
+ Will be interpreted the same as initializing Select2 as...
+
+ You can also define nested configurations, which are typically needed for
+ options such as AJAX. Each level of nesting should be separated by two
+ dashes (
+ Which will be interpreted the same as initializing Select2 with...
+
+ The value of the option is subject to jQuery's
+ parsing rules for
+ HTML5 data attributes.
+
+ This documentation is set up in the form of a FAQ.
+
+ Select2 supports a wide variety of options that allow you to customize it to your needs.
+
+ Core options
+
+
+ {% include options-new/core/data-attributes.html %}
+ {% include options-new/core/amd-support.html %}
+
+ Can I use Select2 with my AMD or CommonJS loader?
+
+
+
+ How do I tell Select2 where to look for modules?
+
+
+
+ Select2 is being placed before jQuery in my JavaScript file
+
+
+ Can I declare my configuration within the HTML?
+
+
+ data-*
attributes, which will override
+ any options set when initializing Select2 and any defaults.
+
+ How should
+
+ camelCase
options be written?
+ <select>
tag as...
+
+<select data-tags="true" data-placeholder="Select an option"></select>
+
+
+
+$("select").select2({
+ tags: "true",
+ placeholder: "Select an option"
+});
+
+
+
+ Are options with nested configurations supported?
+
+
+ --
) instead of one. Due to
+ a jQuery bug,
+ nested options using data-*
attributes
+ do not work in jQuery 1.x.
+
+<select data-ajax--url="http://example.org/api/test" data-ajax--cache="true"></select>
+
+
+
+$("select").select2({
+ ajax: {
+ url: "http://example.org/api/test",
+ cache: "true"
+ }
+});
+
+
+
+ Selections
+
+
+ {% include options-new/selections/multiple.html %}
+ {% include options-new/selections/placeholder.html %}
+ {% include options-new/selections/clearing-selections.html %}
+ {% include options-new/selections/templating.html %}
+
+ Can I allow users to clear their selections?
+
+
+
+ The "x" icon is not clearing the selection
+
+
+
+ Can users remove all of their selections in a multiple select at once?
+
+
+ Can I allow users to make multiple selections?
+
+
+ How can I have Select2 display a placeholder?
+
+
+
+ My first option is being displayed instead of my placeholder
+
+
+
+ I am using AJAX, can I still show a placeholder?
+
+
+
+ Can I use a placeholder without a blank value?
+
+
+
+ Can I change how the placeholder looks?
+
+
+ How can I customize the way selections are displayed?
+
+
+
+ Nothing is being displayed when I select an option
+
+
+
+ I am using HTML in my selection template but it isn't displaying it
+
+
+
+ How can I access the container where the selection is displayed?
+
+
+ Options
+
+