From d9ce9bd933934fadbbad105aad4ffdc770dc9fcc Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 11 Sep 2022 16:49:28 +0200 Subject: [PATCH] Documentation --- docs/customization.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/customization.md b/docs/customization.md index b5226f70b..0a1480d3b 100644 --- a/docs/customization.md +++ b/docs/customization.md @@ -170,18 +170,20 @@ Then, e.g. to override the site title, add the following lines to `main.html`: {% endblock %} ``` -If you intend to add some code to a block rather than to replace it altogether with new content, use `{{ super() }}` right after the `{% block %}` statement to include the original block content. This is particularly useful when adding some third-party widgets to your docs, e.g., for chatting with support or submitting a ticket. For example, if your widget script is hosted on `widgets.example.com`, add the following lines to `main.html`: +If you intend to __add__ something to a block rather than to replace it +altogether with new content, use `{{ super() }}` inside the block to include the +original block content. This is particularly useful when adding third-party +scripts to your docs, e.g. -```html +``` html {% extends "base.html" %} {% block scripts %} - -{{ super() }} - -