Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add multiple classes to MarkDown using Jekyll?

I want to produce HTML table in Jekyll driven web site.

The table is to be formatted with table and table-stripped classes like this:

<table class="table table-stripped">

How can I do it?

Similar problem: how to add multiple CSS classes to paragraph in MarkDown used in Jekyll?

like image 561
Włodzimierz Gajda Avatar asked Dec 16 '14 09:12

Włodzimierz Gajda


1 Answers

I have found the following solutions:

{: .table .table-striped}
|Port  | Content served by | queries/second |
| ------------------------------------------|
| 80   | Apache            | 130            |
| 8080 | Varnish           | 6200           |


{: .aaa .bbb}
Lorem ipsum...
like image 171
Włodzimierz Gajda Avatar answered Oct 19 '22 19:10

Włodzimierz Gajda