From 602039814d7ba4c7c87c0698064c32cd9a5fcfa2 Mon Sep 17 00:00:00 2001 From: James Braza Date: Thu, 17 Aug 2023 22:06:28 -0700 Subject: [PATCH] Added HTML tables docs section --- exampleSite/content/samples/markdown/index.md | 32 ++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/exampleSite/content/samples/markdown/index.md b/exampleSite/content/samples/markdown/index.md index af8bd56f..72281494 100755 --- a/exampleSite/content/samples/markdown/index.md +++ b/exampleSite/content/samples/markdown/index.md @@ -50,7 +50,7 @@ The blockquote element represents content that is quoted from another source, op ## Tables -Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box. +Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box. | Name | Age | | ----- | --- | @@ -63,6 +63,36 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou | --------- | -------- | ------ | | _italics_ | **bold** | `code` | +### HTML Tables + +Blowfish supports HTML tables, that can be personalized with custom CSS. + +{{< alert >}} +Make sure your `markup.toml` has the required contents, +which you can get from the file copy from +[theme config set up]({{< ref "docs/installation#set-up-theme-configuration-files" >}}) +docs. +{{< /alert >}} + + + + + + + + + + + + + + + + + + +
NameAge
Bob27
Alice23
+ ## Code Blocks ### Code block with backticks