diff --git a/docs/patterns/jquery.rst b/docs/patterns/jquery.rst index 1d3b2149..dc4f51fa 100644 --- a/docs/patterns/jquery.rst +++ b/docs/patterns/jquery.rst @@ -19,7 +19,7 @@ Loading jQuery In order to use jQuery, you have to download it first and place it in the static folder of your application and then ensure it's loaded. Ideally you have a layout template that is used for all pages where you just have -to add a script statement to the bottom of your `` to load jQuery: +to add a script statement to the bottom of your ```` to load jQuery: .. sourcecode:: html diff --git a/docs/patterns/wtforms.rst b/docs/patterns/wtforms.rst index c42d94ee..44b699e2 100644 --- a/docs/patterns/wtforms.rst +++ b/docs/patterns/wtforms.rst @@ -100,7 +100,7 @@ arguments will be inserted as HTML attributes. So for example you can call ``render_field(form.username, class='username')`` to add a class to the input element. Note that WTForms returns standard Python unicode strings, so we have to tell Jinja2 that this data is already HTML escaped -with the `|safe` filter. +with the ``|safe`` filter. Here the :file:`register.html` template for the function we used above which takes advantage of the :file:`_formhelpers.html` template: