You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
792 B
Markdown
43 lines
792 B
Markdown
---
|
|
authors: [michael_bluth]
|
|
categories: [paige]
|
|
description: Demonstration of the Paige quote shortcode.
|
|
tags: [figures, quotations, shortcodes]
|
|
title: Quote Shortcode
|
|
weight: 20
|
|
---
|
|
|
|
Paige provides a `paige/quote` shortcode for displaying a quotation.
|
|
|
|
<!--more-->
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/quote */>}}
|
|
Don't believe everything you read on the Internet.
|
|
{{</* /paige/quote */>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/quote >}}
|
|
Don't believe everything you read on the Internet.
|
|
{{< /paige/quote >}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/quote caption="Abraham Lincoln" */>}}
|
|
Don't believe everything you read on the Internet.
|
|
{{</* /paige/quote */>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/quote caption="Abraham Lincoln" >}}
|
|
Don't believe everything you read on the Internet.
|
|
{{< /paige/quote >}}
|