Content Basics
Redaxscript provides different content types such as categories, articles, extras and comments.
Categories
Categories help to group your articles with similar topics.
Articles
Articles are the content provider of your website that can be grouped into categories.
Extras
Extras are content fragments that can be used inside your articles and templates.
Comments
Comments are the best way for visitors to give feedback to your articles.
Edit on GitHubContent Tags
Content tags provide special features inside articles and extras.
More
Add a document break to your article:
<rs-more>
Code
Add a block code and convert special characters to HTML entities:
<rs-code> ... </rs-code>
Language
Get a value from Language:
<rs-language> ... </rs-language>
Registry
Get a value from Registry:
<rs-registry> ... </rs-registry>
Template
Call a simple template tag:
<rs-template> ... </rs-template>
Call a template with parameter using the JSON
format:
<rs-template> { "Tag": { "parameter": "value" } } </rs-template>
Module
Call a simple module:
<rs-module> ... </rs-module>
Call a module with parameter using the JSON
format:
<rs-module> { "Module": { "parameter": "value" } } </rs-module>Edit on GitHub