You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+81-2
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,87 @@ docs
80
80
81
81
## Site features
82
82
83
-
This site contains quite a few shortcodes that writers can use to add extra functionality into each page.
83
+
This site contains quite a few shortcodes that writers can use to add extra functionality into each page. The callout content supports full Markdown syntax, including:
84
+
85
+
- Links
86
+
- Lists
87
+
- Code blocks
88
+
- Bold and italic text
89
+
90
+
### Callout
91
+
92
+
The `callout` shortcode creates distinct message boxes to highlight important information in your content. It supports multiple alert types and custom emoji icons.
93
+
94
+
```markdown
95
+
{{< callout type="info" >}}
96
+
Your message goes here
97
+
{{< /callout >}}
98
+
```
99
+
100
+
#### Type Parameter
101
+
102
+
The `type` parameter controls the callout's appearance and default icon. Available options:
103
+
104
+
-`default`
105
+
-`info`
106
+
-`warning`
107
+
-`error`
108
+
109
+
#### Emoji Parameter
110
+
111
+
You can override the default icon with a custom emoji:
112
+
113
+
```markdown
114
+
{{< callout emoji="🌐" >}}
115
+
Use custom emojis to make your callouts more expressive
116
+
{{< /callout >}}
117
+
```
118
+
119
+
### Tabs
120
+
121
+
The `tabs` shortcode creates interactive tabbed content sections within pages. This shortcode is particularly useful for showing alternative examples, different code formats, or organizing related content.
@@ -92,7 +172,6 @@ Tooltips allow the reader to hover over a particular word or phrase, and have a
92
172
"account""All information is associated with a specific program for a particular user or entity."
93
173
"admin key""A key that allows you to deploy programs and modify the settings of those programs. Admin keys cannot request signatures. This key must be funded to perform some actions."
94
174
"adapter""Plugins that provide support for different chains and program configurations. For example, an adapter can define a specific hashing function to use when signing. Different chains have different signing algorithms; this allows us to support them all."
0 commit comments