Make syntax highlighting explicit in docs

This commit is contained in:
Dion Moult
2023-01-10 10:16:28 +11:00
parent 66e067d1ce
commit c8ba96cde8
236 changed files with 753 additions and 251 deletions
@@ -63,7 +63,9 @@ class Usecase:
:return: The newly created IfcPropertySet
:rtype: ifcopenshell.entity_instance.entity_instance
Example::
Example:
.. code:: python
# Let's imagine we have a new wall type.
wall_type = ifcopenshell.api.run("root.create_entity", model, ifc_class="IfcWallType")
@@ -61,7 +61,9 @@ class Usecase:
:return: The newly created IfcElementQuantity
:rtype: ifcopenshell.entity_instance.entity_instance
Example::
Example:
.. code:: python
# Let's imagine we have a new wall.
wall = ifcopenshell.api.run("root.create_entity", model, ifc_class="IfcWall")
@@ -77,7 +77,9 @@ class Usecase:
:return: None
:rtype: None
Example::
Example:
.. code:: python
# Let's imagine we have a new wall type.
wall_type = ifcopenshell.api.run("root.create_entity", model, ifc_class="IfcWallType")
@@ -55,7 +55,9 @@ class Usecase:
:return: None
:rtype: None
Example::
Example:
.. code:: python
# Let's imagine we have a new wall type.
wall = ifcopenshell.api.run("root.create_entity", model, ifc_class="IfcWall")
@@ -30,7 +30,9 @@ class Usecase:
:return: None
:rtype: None
Example::
Example:
.. code:: python
# Let's imagine we have a new wall type with a property set.
wall_type = ifcopenshell.api.run("root.create_entity", model, ifc_class="IfcWallType")