mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
theme: fix usage of <section> in exampleSite #88
This commit is contained in:
parent
1ad20bd8b2
commit
03205f9f26
1 changed files with 3 additions and 3 deletions
|
@ -352,17 +352,17 @@ Renders to:
|
|||
Wrap inline snippets of code with `` ` ``.
|
||||
|
||||
```markdown
|
||||
In this example, `<section></section>` should be wrapped as **code**.
|
||||
In this example, `<div></div>` should be wrapped as **code**.
|
||||
```
|
||||
|
||||
Renders to:
|
||||
|
||||
In this example, `<section></section>` should be wrapped as **code**.
|
||||
In this example, `<div></div>` should be wrapped as **code**.
|
||||
|
||||
HTML:
|
||||
|
||||
```html
|
||||
<p>In this example, <code><section></section></code> should be wrapped as <strong>code</strong>.</p>
|
||||
<p>In this example, <code><div></div></code> should be wrapped as <strong>code</strong>.</p>
|
||||
```
|
||||
|
||||
### Indented code
|
||||
|
|
Loading…
Reference in a new issue