Skip to main content

Markdown Table

Link with text [Markdown Guide](https://www.markdownguide.org/basic-syntax/)
Link without text <https://todb.specialdistrict.org/files/e46517d11/Proclamation+17+01.pdf>
Bold text I just love **bold text**
Italicized text Italicized text is the _cat's meow_
Images ![Town of Discovery Bay](https://streamline.imgix.net/6325a72c-9849-4ffa-a017-cbcdf7fb26aa/9e32a98f-3860-48be-8884-ea5e905a9240/ToDB%20Community%20Center%20Seal.png?ixlib=rb-1.1.0&w=200&h=200&fit=fillmax&fill=blur&bg=%23dfe2e2&or=0&s=3fb180654ee6a92097ed1fa89acfc864)
Blockquote > Dorothy followed her through many of the beautiful rooms in her castle.
Header # this is a header

keywords: HTML table markdown, allow HTML markdown in tables, HTML table, line breaks tables, links in tables, hyperlink tables 


To use these table features, place the following code into the Advanced Theme Editor: "Site-wide custom HTML before </head>"

The image contains HTML and JavaScript code for integrating the Showdown library to convert text into HTML within a web application.

<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.9.1/showdown.min.js"></script><script>
  $(function() {
    var converter = new showdown.Converter();
    $('#poc table.table td,#poc table.table th').each(function(i, cell) {
      var $cell = $(cell);
      var html = converter.makeHtml($cell.text());
      $cell.html(html);
    });
  });
</script>