File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -456,18 +456,22 @@ def fmt_docstring(module_func):
456
456
Select map :doc:`projection </projections/index>`.
457
457
<BLANKLINE>
458
458
**Aliases:**
459
+ .. hlist::
460
+ :columns: 3
459
461
<BLANKLINE>
460
- - J = projection
461
- - R = region
462
+ - J = projection
463
+ - R = region
462
464
<BLANKLINE>
463
465
""" # noqa: D410,D411
464
466
filler_text = {}
465
467
466
468
if hasattr (module_func , "aliases" ):
467
469
aliases = ["**Aliases:**\n " ]
470
+ aliases .append (".. hlist::" )
471
+ aliases .append (" :columns: 3\n " )
468
472
for arg in sorted (module_func .aliases ):
469
473
alias = module_func .aliases [arg ]
470
- aliases .append (f"- { arg } = { alias } " )
474
+ aliases .append (f" - { arg } = { alias } " )
471
475
filler_text ["aliases" ] = "\n " .join (aliases )
472
476
473
477
filler_text ["table-like" ] = (
You can’t perform that action at this time.
0 commit comments