Commit e9ecc735 by Timothée Peignier

Merge pull request #516 from slafs/slafs/fix-doc-headings

Fix literal markup for settings
parents 78dce26d 741d378b
...@@ -143,7 +143,7 @@ If empty or ``None``, CSS files won't be compressed. ...@@ -143,7 +143,7 @@ If empty or ``None``, CSS files won't be compressed.
Defaults to ``'pipeline.compressors.yuglify.YuglifyCompressor'``. Defaults to ``'pipeline.compressors.yuglify.YuglifyCompressor'``.
JS_COMPRESSOR`` ``JS_COMPRESSOR``
........................... ...........................
Compressor class to be applied to JavaScript files. Compressor class to be applied to JavaScript files.
...@@ -156,7 +156,7 @@ Defaults to ``'pipeline.compressors.yuglify.YuglifyCompressor'`` ...@@ -156,7 +156,7 @@ Defaults to ``'pipeline.compressors.yuglify.YuglifyCompressor'``
Please note that in order to use Yuglify compressor, you need to install Yuglify (see :doc:`installation` for more details). Please note that in order to use Yuglify compressor, you need to install Yuglify (see :doc:`installation` for more details).
TEMPLATE_NAMESPACE`` ``TEMPLATE_NAMESPACE``
............................... ...............................
Object name where all of your compiled templates will be added, from within your browser. Object name where all of your compiled templates will be added, from within your browser.
...@@ -165,7 +165,7 @@ To access them with your own JavaScript namespace, change it to the object of yo ...@@ -165,7 +165,7 @@ To access them with your own JavaScript namespace, change it to the object of yo
Defaults to ``"window.JST"`` Defaults to ``"window.JST"``
TEMPLATE_EXT`` ``TEMPLATE_EXT``
......................... .........................
The extension for which Pipeline will consider the file as a Javascript template. The extension for which Pipeline will consider the file as a Javascript template.
...@@ -173,7 +173,7 @@ To use a different extension, like ``.mustache``, set this settings to ``.mustac ...@@ -173,7 +173,7 @@ To use a different extension, like ``.mustache``, set this settings to ``.mustac
Defaults to ``".jst"`` Defaults to ``".jst"``
TEMPLATE_FUNC`` ``TEMPLATE_FUNC``
.......................... ..........................
JavaScript function that compiles your JavaScript templates. JavaScript function that compiles your JavaScript templates.
...@@ -183,7 +183,7 @@ setting is to use the ...@@ -183,7 +183,7 @@ setting is to use the
Defaults to ``"_.template"`` Defaults to ``"_.template"``
TEMPLATE_SEPARATOR`` ``TEMPLATE_SEPARATOR``
............................... ...............................
Character chain used by Pipeline as replacement for directory separator. Character chain used by Pipeline as replacement for directory separator.
...@@ -191,7 +191,7 @@ Character chain used by Pipeline as replacement for directory separator. ...@@ -191,7 +191,7 @@ Character chain used by Pipeline as replacement for directory separator.
Defaults to ``"_"`` Defaults to ``"_"``
MIMETYPES`` ``MIMETYPES``
...................... ......................
Tuple that match file extension with their corresponding mimetypes. Tuple that match file extension with their corresponding mimetypes.
...@@ -241,7 +241,7 @@ Overriding embedding settings ...@@ -241,7 +241,7 @@ Overriding embedding settings
You can override these rules using the following settings: You can override these rules using the following settings:
EMBED_MAX_IMAGE_SIZE`` ``EMBED_MAX_IMAGE_SIZE``
................................. .................................
Setting that controls the maximum image size (in bytes) to embed in CSS using Data-URIs. Setting that controls the maximum image size (in bytes) to embed in CSS using Data-URIs.
...@@ -249,7 +249,7 @@ Internet Explorer 8 has issues with assets over 32 kilobytes. ...@@ -249,7 +249,7 @@ Internet Explorer 8 has issues with assets over 32 kilobytes.
Defaults to ``32700`` Defaults to ``32700``
EMBED_PATH`` ``EMBED_PATH``
....................... .......................
Setting the directory that an asset needs to be in so that it is embedded Setting the directory that an asset needs to be in so that it is embedded
...@@ -275,4 +275,4 @@ All javascript output is wrapped in an anonymous function : :: ...@@ -275,4 +275,4 @@ All javascript output is wrapped in an anonymous function : ::
This safety wrapper, make it difficult to pollute the global namespace by accident and improve performance. This safety wrapper, make it difficult to pollute the global namespace by accident and improve performance.
You can override this behavior by setting DISABLE_WRAPPER`` to ``True``. You can override this behavior by setting ``DISABLE_WRAPPER`` to ``True``.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment