displaying beautiful tables with Bootstrap Tables

Using markdown to display tables is easy. ## Simple Example First, add the following to the post's front matter ```yml pretty_table: true ``` Then, the following syntax ```markdown | Left aligned | Center aligned | Right aligned | | :----------- | :------------: | ------------: | | Left 1 | center 1 | right 1 | | Left 2 | center 2 | right 2 | | Left 3 | center 3 | right 3 | ``` will generate | Left aligned | Center aligned | Right aligned | | :----------- | :------------: | ------------: | | Left 1 | center 1 | right 1 | | Left 2 | center 2 | right 2 | | Left 3 | center 3 | right 3 |

## HTML Example It is also possible to use HTML to display tables. For example, the following HTML code will display a table with [Bootstrap Table](https://bootstrap-table.com/), loaded from a JSON file: ```html
ID Item Name Item Price
```
ID Item Name Item Price

## More Complex Example By using [Bootstrap Table](https://bootstrap-table.com/) it is possible to create pretty complex tables, with pagination, search, and more. For example, the following HTML code will display a table, loaded from a JSON file, with pagination, search, checkboxes, and header/content alignment. For more information, check the [documentation](https://examples.bootstrap-table.com/index.html). ```html
ID Item Name Item Price
```
ID Item Name Item Price