This profile applies two Plugin Aliases to help with creating Bootstrap rows and cols layout in wiki syntax content.
So
instead of writing something complex and hard to read like this:
{DIV(class="row")}
{DIV(class="col-sm-12")}Hello World!{DIV}
{DIV(class="col")}Column 1{DIV}
{DIV(class="col")}Column 2{DIV}
{DIV}
{DIV(class="row")}{DIV(class="col")}Last row{DIV}{DIV}
You will be able to use these Plugin Aliases instead to distinguish the rows and cols:
{ROW()}
{COL(class="col-sm-12")}Hello World!{COL}
{COL()}Column 1{COL}
{COL()}Column 2{COL}
{ROW}
{ROW()}{COL()}Last row{COL}{ROW}
The following will be applied:
YAML Code
Row Plugin Alias
YAML
objects:
-
type: plugin_alias
ref: row
data:
name: row
implementation: div
description:
name: "Row"
description: "Creates Row plugin alias"
params:
class:
name: "Class"
default: "row"
description: "Class to be used (default is row)"
required: true
body: "Body"
prefs: [ wikiplugin_row, wikiplugin_div ]
params:
class: "row"
body:
input: use
Col Plugin Alias
TODO
Preferences
Preferences which need to be enabled:
YAML
preferences:
wikiplugin_div: "y"
wikiplugin_row: "y"