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/manual.txt
+3-3
Original file line number
Diff line number
Diff line change
@@ -813,9 +813,9 @@ To use them from plugins, please see `Extending Nikola <https://getnikola.com/ex
813
813
Using a shortcode
814
814
~~~~~~~~~~~~~~~~~
815
815
816
-
In your content files, a shortcode can be called by using the {{% name parameters %}} form. Shortcode parameters are space delimited. Parameters with spaces can be quoted.
816
+
In your content files, a shortcode can be called by using the ``{{% name parameters %}}`` form. Shortcode parameters are space delimited. Parameters with spaces can be quoted (or backslash escaped).
817
817
818
-
The first word is always the name of the shortcode. Parameters follow the name. Depending upon how the shortcode is defined, the parameters may be named, positional or both (although you can’t mixed parameter types in a single call). The format for named parameters models that of HTML with the format name="value".
818
+
The first word is always the name of the shortcode. Parameters follow the name. Depending upon how the shortcode is defined, the parameters may be named, positional or both (although you can’t mix parameter types in a single call). The format for named parameters models that of HTML with the format name="value".
4
Has conversations. Original line has conversations.
819
819
820
820
Some shortcodes use or require closing shortcodes. Like HTML, the opening and closing shortcodes match (name only), the closing being prepended with a slash.
821
821
@@ -1162,7 +1162,7 @@ The branch to use for committing the sources can be changed using the
1162
1162
``GITHUB_DEPLOY_BRANCH`` option in your config. For a
1163
1163
user.github.io/organization.github.io, this MUST be set to ``master``,
1164
1164
and the branch containing the sources must be changed to something
1165
-
else, like ``deploy``, using the ``GITHUB_SOURCE_BRANCH`` option. The
1165
+
else, like ``src``, using the ``GITHUB_SOURCE_BRANCH`` option. The
1166
1166
remote name to which the changes are pushed is ``origin`` by default,
1167
1167
and can be changed using the ``GITHUB_REMOTE_NAME`` option. You also,
1168
1168
obviously, need to have ``git`` on your PATH, and should be able to