layout | group | subgroup | title | menu_title | menu_order |
---|---|---|---|---|---|
default |
A_Introduction |
template (generic) |
template (generic) |
1 |
This is a template for a topic that has not yet been written by the Magento Developer Docs team.
We encourage our community members to add content; either by writing a full topic, adding new sections to existing topic, or even just a few sentences about something you know of this topic. Don't worry about perfect grammar or form; just get your brilliance down!!
To get started, edit your local version of this file, using the markdown language (and HTML where needed). Then, create a Pull Request to have your contribution reviewed by the DevDocs team.
Your contributions to our Docs and your experience with using Magento, are very valued and appreciated. Let us know if you have any questions!
PROVIDE OVERVIEW OF TOPIC HERE PROVIDE TEXT HERE FOR FIRST SECTION.INSERT NOTE TEXT HERE.
TO HYPERLINK TO ANOTHER TOPIC... refer to the NAME OF TOPIC OR BOOK.
PROVIDE TEXT HERE FOR NEXT SECTION.ADD DIAGRAM OR ILLUSTRATION
{% collapsible Click to show/hide content %}
To use the collapsible content functionality, you can use the collapsible
block tag. Any content inside this block will be hidden until the header text is clicked.
See the markdown version of this file for examples. {% endcollapsible %}
{% collapsible Click to show/hide image %}  {% endcollapsible %}
{% collapsible HTML Table %}
Col 1 | Col 2 | Col 3 |
---|---|---|
Data 1 | Data 2 | Data 3 |
Data 4 | Data 5 | Data 6 |
Data 7 | Data 8 | Data 9 |
{% collapsible Markdown Table %}
Col 1 | Col 2 | Col 3 |
---|---|---|
Data 1 | Data 2 | Data 3 |
Data 4 | Data 5 | Data 6 |
Data 7 | Data 8 | Data 9 |
{% endcollapsible %} |
{% collapsible Click to show/hide list %}
- List Item 1
- List Item 2
- List Item 3 {% endcollapsible %}
{% collapsible Click to show/hide included content %} {% include mtf/page-generator.html %} {% endcollapsible %}
{% collapsible Collapsible Code Examples%}
Normal Markdown
<div class="collapsible">
<h4 class="collapsible-title">Collapsible Title</h4>
<div class="collapsible-content">
<p>Put collapsible content here.</p>
</div>
</div>
Highlighted Code
{% highlight html %}
{% endhighlight %} {% endcollapsible %}You can have multiple title-content pairs in a collapsible container.
Each content is controlled by its preceding title.
Clicking on each title will open its corresponding content and close any open contents.