I want to transform the following text
...
Start with generating a new project with the canonical `padrino` command. In contrast to our "Hello World!" application
(app) before, we are using new options:
{: lang="bash" }
$ mkdir ~/padrino-projects
$ cd ~/padrino_projects
$ padrino g project job-vacancy -d activerecord -t rspec -s jquery -e erb -a sqlite
Explanation of the fields commands:
...
Into
...
Start with generating a new project with the canonical `padrino` command. In contrast to our "Hello World!" application
(app) before, we are using new options:
{% highlight bash %}
$ mkdir ~/padrino-projects
$ cd ~/padrino_projects
$ padrino g project job-vacancy -d activerecord -t rspec -s jquery -e erb -a sqlite
{ endhighlight}
Explanation of the fields commands:
...
Thanks for your help.