Concordion > Specification Types > Markdown >

Markdown run command

Since: Concordion 2.0.0

Run

The Run command is expressed using the form:

[Display text](spec.html "c:run")

where spec.html is the name of the specification.

To specify a custom runner, use:

[Display text](spec.html "c:run=runnerName")

where runnerName is the fully qualified class name of the runner.

Example

Markdown Resultant HTML
      
[Whatever](whatever.html "c:run")
        
<a href="whatever.html" concordion:run="concordion">Whatever</a>
      
[Whatever](whatever.html "c:run=exampleRunner")
        
<a href="whatever.html" concordion:run="exampleRunner">Whatever</a>