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):
456456 Select map :doc:`projection </projections/index>`.
457457 <BLANKLINE>
458458 **Aliases:**
459+ .. hlist::
460+ :columns: 3
459461 <BLANKLINE>
460- - J = projection
461- - R = region
462+ - J = projection
463+ - R = region
462464 <BLANKLINE>
463465 """ # noqa: D410,D411
464466 filler_text = {}
465467
466468 if hasattr (module_func , "aliases" ):
467469 aliases = ["**Aliases:**\n " ]
470+ aliases .append (".. hlist::" )
471+ aliases .append (" :columns: 3\n " )
468472 for arg in sorted (module_func .aliases ):
469473 alias = module_func .aliases [arg ]
470- aliases .append (f"- { arg } = { alias } " )
474+ aliases .append (f" - { arg } = { alias } " )
471475 filler_text ["aliases" ] = "\n " .join (aliases )
472476
473477 filler_text ["table-like" ] = (
You can’t perform that action at this time.
0 commit comments