GitHub

File tree

  • src/mkdocstrings_handlers/python/templates/material/_base/docstring

Original file line numberDiff line numberDiff line change

@@ -49,7 +49,7 @@

4949

<table>

5050

<thead>

5151

<tr>

52-

<th><b>ATTRIBUTE</b></th>

52+

<th><b>{{ (section.title or "ATTRIBUTE").rstrip(":").upper() }}</b></th>

5353

<th><b>DESCRIPTION</b></th>

5454

</tr>

5555

</thead>

Original file line numberDiff line numberDiff line change

@@ -49,7 +49,7 @@

4949

<table>

5050

<thead>

5151

<tr>

52-

<th><b>PARAMETER</b></th>

52+

<th><b>{{ (section.title or "PARAMETER").rstrip(":").upper() }}</b></th>

5353

<th><b>DESCRIPTION</b></th>

5454

</tr>

5555

</thead>

Original file line numberDiff line numberDiff line change

@@ -59,7 +59,7 @@

5959

<table>

6060

<thead>

6161

<tr>

62-

<th><b>PARAMETER</b></th>

62+

<th><b>{{ (section.title or "PARAMETER").rstrip(":").upper() }}</b></th>

6363

<th><b>DESCRIPTION</b></th>

6464

</tr>

6565

</thead>

Original file line numberDiff line numberDiff line change

@@ -47,7 +47,7 @@

4747

<table>

4848

<thead>

4949

<tr>

50-

<th><b>RAISES</b></th>

50+

<th><b>{{ (section.title or "RAISES").rstrip(":").upper() }}</b></th>

5151

<th><b>DESCRIPTION</b></th>

5252

</tr>

5353

</thead>

Original file line numberDiff line numberDiff line change

@@ -52,7 +52,7 @@

5252

<table>

5353

<thead>

5454

<tr>

55-

<th><b>RECEIVES</b></th>

55+

<th><b>{{ (section.title or "RECEIVES").rstrip(":").upper() }}</b></th>

5656

<th><b>DESCRIPTION</b></th>

5757

</tr>

5858

</thead>

Original file line numberDiff line numberDiff line change

@@ -52,7 +52,7 @@

5252

<table>

5353

<thead>

5454

<tr>

55-

<th><b>RETURNS</b></th>

55+

<th><b>{{ (section.title or "RETURNS").rstrip(":").upper() }}</b></th>

5656

<th><b>DESCRIPTION</b></th>

5757

</tr>

5858

</thead>

Original file line numberDiff line numberDiff line change

@@ -47,7 +47,7 @@

4747

<table>

4848

<thead>

4949

<tr>

50-

<th><b>WARNS</b></th>

50+

<th><b>{{ (section.title or "WARNS").rstrip(":").upper() }}</b></th>

5151

<th><b>DESCRIPTION</b></th>

5252

</tr>

5353

</thead>

Original file line numberDiff line numberDiff line change

@@ -52,7 +52,7 @@

5252

<table>

5353

<thead>

5454

<tr>

55-

<th><b>YIELDS</b></th>

55+

<th><b>{{ (section.title or "YIELDS").rstrip(":").upper() }}</b></th>

5656

<th><b>DESCRIPTION</b></th>

5757

</tr>

5858

</thead>

Read the original on github.com ↗