-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test2.md page to show that shortcode syntax without Markdown rendering renders this case fine. Having shortcodes where the entire content is wrapped with `div` doesn't make sense to send through Blackfriday. See gohugoio/hugo#1387
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
date: 2015-08-30 | ||
title: Test2 | ||
layout: default | ||
--- | ||
|
||
Before Container | ||
|
||
{{< container >}} | ||
|
||
begin container. | ||
|
||
before row | ||
|
||
{{< row >}} | ||
|
||
row content | ||
|
||
before columnand | ||
|
||
{{< column >}} | ||
|
||
Content column 1 | ||
|
||
{{< /column >}} | ||
|
||
between columsn | ||
|
||
{{< column >}} | ||
|
||
Content column 2 | ||
|
||
{{< /column >}} | ||
|
||
after column | ||
|
||
{{< /row >}} | ||
|
||
After row | ||
|
||
{{< /container >}} | ||
|
||
after container |