deploy: 7cc146b13f
This commit is contained in:
parent
5128a3026a
commit
5b4da1927a
31 changed files with 237 additions and 243 deletions
|
@ -1,5 +1,5 @@
|
|||
<!doctype html><html lang=en-US><head><meta http-equiv=X-Clacks-Overhead content="GNU Terry Pratchett"><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" href=https://clente.github.io/hugo-bearcub/images/favicon.png><title>Syntax | Bear Cub</title>
|
||||
<meta name=title content="Syntax"><meta name=description content="Bear Cub Demo"><meta name=author content><meta name=keywords content="syntax,themes,css,emoji,html,markdown,privacy,shortcodes,text,"><meta property="og:url" content="https://clente.github.io/hugo-bearcub/categories/syntax/"><meta property="og:site_name" content="Bear Cub"><meta property="og:title" content="Syntax"><meta property="og:description" content="Bear Cub Demo"><meta property="og:locale" content="en_US"><meta property="og:type" content="website"><meta property="og:image" content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta property="fb:admins" content="0000000000"><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta name=twitter:title content="Syntax"><meta name=twitter:description content="Bear Cub Demo"><meta name=twitter:site content="@example"><meta itemprop=name content="Syntax"><meta itemprop=description content="Bear Cub Demo"><meta itemprop=dateModified content="2019-03-11T00:00:00+00:00"><meta itemprop=image content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta name=referrer content="no-referrer-when-downgrade"><link href=/hugo-bearcub/original.min.css rel=stylesheet><link rel=alternate type=application/rss+xml href=https://clente.github.io/hugo-bearcub/categories/syntax/index.xml title="Bear Cub"></head><body><header><a class=skip-link href=#main-content>Skip to main content</a>
|
||||
<meta name=title content="Syntax"><meta name=description content="Bear Cub Demo"><meta name=author content><meta name=keywords content="syntax,themes,css,emoji,html,markdown,privacy,shortcodes,text,"><meta property="og:url" content="https://clente.github.io/hugo-bearcub/categories/syntax/"><meta property="og:site_name" content="Bear Cub"><meta property="og:title" content="Syntax"><meta property="og:description" content="Bear Cub Demo"><meta property="og:locale" content="en_US"><meta property="og:type" content="website"><meta property="og:image" content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta property="fb:admins" content="0000000000"><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta name=twitter:title content="Syntax"><meta name=twitter:description content="Bear Cub Demo"><meta name=twitter:site content="@example"><meta itemprop=name content="Syntax"><meta itemprop=description content="Bear Cub Demo"><meta itemprop=datePublished content="2019-03-11T00:00:00+00:00"><meta itemprop=dateModified content="2019-03-11T00:00:00+00:00"><meta itemprop=image content="https://clente.github.io/hugo-bearcub/images/share.webp"><meta name=referrer content="no-referrer-when-downgrade"><link href=/hugo-bearcub/original.min.css rel=stylesheet><link rel=alternate type=application/rss+xml href=https://clente.github.io/hugo-bearcub/categories/syntax/index.xml title="Bear Cub"></head><body><header><a class=skip-link href=#main-content>Skip to main content</a>
|
||||
<a href=/hugo-bearcub/ class=title><h1>Bear Cub</h1></a><nav><a href=/hugo-bearcub/>Home</a>
|
||||
<a href=/hugo-bearcub/blog/>Blog</a>
|
||||
<a href=https://clente.github.io/hugo-bearcub/index.xml>RSS</a>
|
||||
|
|
|
@ -25,39 +25,39 @@
|
|||
<h2 id="tables">Tables</h2>
|
||||
<p>Tables aren’t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Age</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Bob</td>
|
||||
<td>27</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Alice</td>
|
||||
<td>23</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="text-align: left">Name</th>
|
||||
<th style="text-align: left">Age</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: left">Bob</td>
|
||||
<td style="text-align: left">27</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: left">Alice</td>
|
||||
<td style="text-align: left">23</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h4 id="inline-markdown-within-tables">Inline Markdown within tables</h4>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Italics</th>
|
||||
<th>Bold</th>
|
||||
<th>Code</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><em>italics</em></td>
|
||||
<td><strong>bold</strong></td>
|
||||
<td><code>code</code></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="text-align: left">Italics</th>
|
||||
<th style="text-align: left">Bold</th>
|
||||
<th style="text-align: left">Code</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: left"><em>italics</em></td>
|
||||
<td style="text-align: left"><strong>bold</strong></td>
|
||||
<td style="text-align: left"><code>code</code></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h2 id="code-blocks">Code Blocks</h2>
|
||||
<h4 id="code-block-with-backticks">Code block with backticks</h4>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue