classref: Use code markup for default values/overrides

Sync with godotengine/godot#35357.
Fixes #3071.
This commit is contained in:
Rémi Verschelde
2020-01-20 12:41:27 +01:00
parent 0ac1767a3f
commit 782dd64a19
410 changed files with 9572 additions and 9572 deletions

View File

@@ -34,13 +34,13 @@ Tutorials
Properties
----------
+-------------------------------------+-------------------------------------------------------------------------------+-------+
| :ref:`bool<class_bool>` | :ref:`blocking_mode_enabled<class_HTTPClient_property_blocking_mode_enabled>` | false |
+-------------------------------------+-------------------------------------------------------------------------------+-------+
| :ref:`StreamPeer<class_StreamPeer>` | :ref:`connection<class_HTTPClient_property_connection>` | |
+-------------------------------------+-------------------------------------------------------------------------------+-------+
| :ref:`int<class_int>` | :ref:`read_chunk_size<class_HTTPClient_property_read_chunk_size>` | 4096 |
+-------------------------------------+-------------------------------------------------------------------------------+-------+
+-------------------------------------+-------------------------------------------------------------------------------+-----------+
| :ref:`bool<class_bool>` | :ref:`blocking_mode_enabled<class_HTTPClient_property_blocking_mode_enabled>` | ``false`` |
+-------------------------------------+-------------------------------------------------------------------------------+-----------+
| :ref:`StreamPeer<class_StreamPeer>` | :ref:`connection<class_HTTPClient_property_connection>` | |
+-------------------------------------+-------------------------------------------------------------------------------+-----------+
| :ref:`int<class_int>` | :ref:`read_chunk_size<class_HTTPClient_property_read_chunk_size>` | ``4096`` |
+-------------------------------------+-------------------------------------------------------------------------------+-----------+
Methods
-------
@@ -426,7 +426,7 @@ Property Descriptions
- :ref:`bool<class_bool>` **blocking_mode_enabled**
+-----------+----------------------------+
| *Default* | false |
| *Default* | ``false`` |
+-----------+----------------------------+
| *Setter* | set_blocking_mode(value) |
+-----------+----------------------------+
@@ -456,7 +456,7 @@ The connection to use for this client.
- :ref:`int<class_int>` **read_chunk_size**
+-----------+----------------------------+
| *Default* | 4096 |
| *Default* | ``4096`` |
+-----------+----------------------------+
| *Setter* | set_read_chunk_size(value) |
+-----------+----------------------------+