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: docs/websites/website-blog.qmd
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -418,16 +418,22 @@ Here are the steps required to add a subscription widget:
418
418
The above widget HTML will not work in your blog as the subscription HTML needs to contain value specific to your blog. See your email service provider's instructions for generating a subscription widget.
419
419
:::
420
420
421
-
2. Create the file `subscribe.html` in the root of your project.
421
+
2. Create the file `subscribe.md` in the root of your project.
422
422
423
-
3. Paste the HTML for your subscription widget into `subscribe.html` and save the file.
423
+
3. Paste the HTML for your subscription widget into `subscribe.md` as a raw HTML block and save the file.
424
424
425
-
4. Add `subscribe.html` to the `margin-header` in your `_quarto.yml` file:
425
+
````{.markdown filename="subscribe.md"}
426
+
```{=html}
427
+
Your HTML code goes here.
428
+
```
429
+
````
430
+
431
+
4. Add `subscribe.md` to the `margin-header` in your `_quarto.yml` file:
0 commit comments