docs: fixup code blocks rendering (#4594)
This commit is contained in:
parent
f9881101ee
commit
1d27fb30ff
|
|
@ -106,7 +106,7 @@ edit the ``JSON Metadata`` field, more specifically the
|
|||
never be affected by any dashboard level filtering.
|
||||
|
||||
|
||||
..code:: json
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"filter_immune_slices": [324, 65, 92],
|
||||
|
|
@ -141,7 +141,7 @@ to be refreshed - especially if some data is slow moving, or run heavy queries.
|
|||
slices from the timed refresh process, add the ``timed_refresh_immune_slices`` key to the dashboard
|
||||
``JSON Metadata`` field:
|
||||
|
||||
..code:: json
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"filter_immune_slices": [],
|
||||
|
|
@ -157,7 +157,7 @@ Slice refresh will also be staggered over the specified period. You can turn off
|
|||
by setting the ``stagger_refresh`` to ``false`` and modify the stagger period by setting
|
||||
``stagger_time`` to a value in milliseconds in the ``JSON Metadata`` field:
|
||||
|
||||
..code:: json
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"stagger_refresh": false,
|
||||
|
|
@ -236,7 +236,7 @@ It is possible on a per-dashboard basis by providing a mapping of
|
|||
labels to colors in the ``JSON Metadata`` attribute using the
|
||||
``label_colors`` key.
|
||||
|
||||
..code:: json
|
||||
.. code-block:: json
|
||||
|
||||
{
|
||||
"label_colors": {
|
||||
|
|
|
|||
|
|
@ -588,7 +588,7 @@ at the ``/simple_page`` url. This can allow you to run other things such
|
|||
as custom data visualization applications alongside Superset, on the
|
||||
same server.
|
||||
|
||||
..code ::
|
||||
.. code-block:: python
|
||||
|
||||
from flask import Blueprint
|
||||
simple_page = Blueprint('simple_page', __name__,
|
||||
|
|
@ -609,7 +609,7 @@ are logged as well as key events like query start and end in SQL Lab.
|
|||
To setup StatsD logging, it's a matter of configuring the logger in your
|
||||
``superset_config.py``.
|
||||
|
||||
..code ::
|
||||
.. code-block:: python
|
||||
|
||||
from superset.stats_logger import StatsdStatsLogger
|
||||
STATS_LOGGER = StatsdStatsLogger(host='localhost', port=8125, prefix='superset')
|
||||
|
|
|
|||
|
|
@ -1735,7 +1735,7 @@ To add a new country in country map tools, we need follow next steps :
|
|||
7. Add your country in component 'select_country'
|
||||
Example :
|
||||
|
||||
.. code:: python
|
||||
.. code-block:: javascript
|
||||
|
||||
select_country: {
|
||||
type: 'SelectControl',
|
||||
|
|
|
|||
Loading…
Reference in New Issue