└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Bootstrap Code 2 | 3 | Documentation and examples for displaying inline and multiline blocks of code with Bootstrap 5. 4 | 5 | ## Inline code 6 | 7 | Wrap inline snippets of code with ``. Be sure to escape HTML angle brackets. 8 | ```html 9 | For example, <section> 10 | ``` 11 | ## Code blocks 12 | 13 | Use `
`s for multiple lines of code. Once again, be sure to escape any angle brackets in the code for proper rendering. You may optionally add the `.pre-scrollable` class, which will set a max-height of 340px and provide a y-axis scrollbar
14 | 
15 | ```html
16 | 
<p>Sample text here...</p>
17 |   <p>And another line of sample text here...</p>
18 | ```
19 | 
20 | #### Much more examples and a detailed description can be found at [📄 Code documentation page](https://mdbootstrap.com/docs/standard/extended/code/)
21 | 
22 |   
23 |  
24 |   
25 | 
26 | 


--------------------------------------------------------------------------------