Skip to content

Commit f794a09

Browse files
committed
add yaml
1 parent 22ede13 commit f794a09

File tree

5 files changed

+48
-1
lines changed

5 files changed

+48
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.html
2+
*.pdf
3+
*_files/

README.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
# quarto-technative-branding
1+
# Quarto-technative-branding Extension For Quarto
2+
3+
_TODO_: Add a short description of your extension.
4+
5+
## Installing
6+
7+
_TODO_: Replace the `<github-organization>` with your GitHub organization.
8+
9+
```bash
10+
quarto add <github-organization>/quarto-technative-branding
11+
```
12+
13+
This will install the extension under the `_extensions` subdirectory.
14+
If you're using version control, you will want to check in this directory.
15+
16+
## Using
17+
18+
_TODO_: Describe how to use your extension.
19+
20+
## Example
21+
22+
Here is the source code for a minimal example: [example.qmd](example.qmd).
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
title: Quarto-technative-branding
2+
author: Pim Snel
3+
version: 1.0.0
4+
quarto-required: ">=1.3.0"
5+
contributes:
6+
shortcodes:
7+
- quarto-technative-branding.lua
8+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
return {
2+
['quarto-technative-branding'] = function(args, kwargs, meta)
3+
return pandoc.Str("Hello from Quarto-technative-branding!")
4+
end
5+
}

example.qmd

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Quarto-technative-branding Example"
3+
---
4+
5+
## Heading
6+
7+
{{< quarto-technative-branding >}}
8+
9+

0 commit comments

Comments
 (0)