📝 Edit page
            
    ➕ Add page
            
    
         
    
    
    
    
        
            
 
        
    Basic Markdown Table
See Codepen demo
Set up steps
Based on tutorial for Jekyll.
- Add datatables CSS.
- Add any custom CSS, like font-family.
- Add jQuery JS.
- Add jQuery datatable JS.
- Add table (HTML, or Markdown with pre-processor in Codepen or your templating engine). No special class is needed, you just need to reference your table in the next step.
- Add JS snippet to run jQuery DataTable set up your table.
You datatable will be generated.
Samples
- styles.css- body { font-family: Arial }
- main.jsor inline- scripttag.- $(document).ready(function () { $("#example").DataTable(); });
- index.htmlhead tag:- <link rel="stylesheet" href="https://cdn.datatables.net/1.10.21/css/jquery.dataTables.min.css"/> <script src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
- index.htmlbody tag:- <h1>Datatables Markdown Demo</h1> <br> <div id="my-table"> | Food | Description | Category | Sample type | | ------- | ------------------------------------- | -------- | ----------- | | Apples | A small, somewhat round ... | Fruit | Fuji | | Bananas | A long and curved, often-yellow ... | Fruit | Snow | | Kiwis | A small, hairy-skinned sweet ... | Fruit | Golden | | Oranges | A spherical, orange-colored sweet ... | Fruit | Navel | </div>