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-xs-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-xs-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: false
    body: "Body"
    prefs: [ wikiplugin_div ]
   params:
    class: "row"
   body:
    input: use


Col Plugin Alias

YAML
objects:
 -
  type: plugin_alias
  ref: col
  data:
   name: col
   implementation: div
   description:
    name: "Col"
    description: "Plugin alias to produce Bootstrap column div"
    params:
     class:
      name: "Class"
      default: "col"
      description: "Optional class or more classes separated by space (default is col)"
      required: false
    body: "Body"
    prefs: [ wikiplugin_div ]
   params:
    class: "col"
   body:
    input: use


Preferences

Preferences which need to be enabled:
YAML
preferences:
 wikiplugin_div: "y"
 wikiplugin_row: "y"
 wikiplugin_col: "y"