The example is not rendered as block quote in the HTML version: https://docs.pagure.org/pagure/usage/markdown.html#quoting
For some reason the CSS uses a massive font size for the quote, so maybe this is not a good change.
Looks like a good idea, but while we're there, I propose we add the following changes:
diff --git a/ doc/_static/fonts.css b/ doc/_static/fonts.css index e96b0f33..c3a27fa3 100644 --- a/ doc/_static/fonts.css +++ b/ doc/_static/fonts.css @@ -24,7 +24,7 @@ p { } blockquote { font-family: sans-serif; - font-size: 21px; + font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; diff --git a/ doc/configuration.rst b/ doc/configuration.rst index 035a4812..b26898ef 100644 --- a/ doc/configuration.rst +++ b/ doc/configuration.rst @@ -197,7 +197,7 @@ SESSION_TYPE Enables the `flask-session <https://pythonhosted.org/Flask-Session/>`_ extension if set to a value other than ``None``. The ``flask-session`` package needs to be installed and proper -`configuration https://pythonhosted.org/Flask-Session/#configuration`_ +`configuration <https://pythonhosted.org/Flask-Session/#configuration>`_ needs to be included in the Pagure config file. This is useful when the Pagure server needs to be scaled up to multiple diff --git a/ doc/usage/pagure_ci_jenkins.rst b/ doc/usage/pagure_ci_jenkins.rst index 81680bc5..622d1371 100644 --- a/ doc/usage/pagure_ci_jenkins.rst +++ b/ doc/usage/pagure_ci_jenkins.rst @@ -21,7 +21,7 @@ How to enable Pagure CI * Enter the name of the job the CI service will trigger. For example `pagure-ci` * Tick the checkbox activating the hook. Either trigger on every commits, trigger only -on pull-requests or both every commits and pull-requests. + on pull-requests or both every commits and pull-requests.
rebased onto 250277bf9f0f965bf6f2a5849fef786d9264b49c
Thanks! :)
Pull-Request has been merged by pingou
The example is not rendered as block quote in the HTML version:
https://docs.pagure.org/pagure/usage/markdown.html#quoting
For some reason the CSS uses a massive font size for the quote, so maybe this is not a good change.