Module
shell_docs
Module Summary
Functions used to render EEP-48 style documentation for a shell.
Since
Module shell_docs was introduced in OTP 23.0.
Description
This module can be used to render function and type documentation to be printed in a shell. It can only render EEP-48 documentation of the format application/erlang+html. For more information about this format see Documentation Storage in Erl_Docgen's User's Guide.
Data Types
docs_v1() = #docs_v1{} The record holding EEP-48 documentation for a module. You can use code:get_doc/1 to fetch this information from a module.
config() =
#{encoding => unicode | latin1,
columns => integer() >= 1,
ansi => boolean()}The configuration of how the documentation should be rendered.
- encoding
- Configure the encoding that should be used by the renderer for graphical details such as bullet-points. By default
shell_docsuses the value returned byio:getopts(). - ansi
- Configure whether
ansi escape codesshould be used to render graphical details such as bold and underscore. By defaultshell_docswill try to determine if the receiving shell supports ansi escape codes. It is possible to override the automated check by setting the kernel configuration parametershell_docs_ansito aboolean()value. - columns
- Configure how wide the target documentation should be rendered. By default
shell_docsused the value returned byio:columns().
chunk_element_block_type() =
p | 'div' | br | pre | ul | ol | li | dl | dt | dd | h1 | h2 |
h3chunk_element_inline_type() = a | code | em | ichunk_element_type() =
chunk_element_inline_type() | chunk_element_block_type() The HTML tags allowed in application/erlang+html.
chunk_element_attr() = {atom(), unicode:chardata()}chunk_element_attrs() = [chunk_element_attr()]chunk_element() =
{chunk_element_type(),
chunk_element_attrs(),
chunk_elements()} |
binary()chunk_elements() = [chunk_element()]Exports
render(Module, Docs) -> unicode:chardata() | OTP 23.0 |
render(Module, Docs, Config) -> unicode:chardata() | OTP 23.2 |
render(Module, Function, Docs) -> Res | OTP 23.0 |
render(Module, Function, Docs, Config) -> Res | OTP 23.2 |
render(Module, Function, Arity, Docs) -> Res | OTP 23.0 |
render(Module, Function, Arity, Docs, Config) -> Res | OTP 23.2 |
Types
Render the documentation for a module or function.
render_type(Module, Docs) -> unicode:chardata() | OTP 23.0 |
render_type(Module, Docs, Config) -> unicode:chardata() | OTP 23.2 |
render_type(Module, Type, Docs) -> Res | OTP 23.0 |
render_type(Module, Type, Docs, Config) -> Res | OTP 23.2 |
render_type(Module, Type, Arity, Docs) -> Res | OTP 23.0 |
render_type(Module, Type, Arity, Docs, Config) -> Res | OTP 23.2 |
Types
Render the documentation of a type in a module.
render_callback(Module, Docs) -> unicode:chardata() | OTP 23.0 |
render_callback(Module, Docs, Config) -> unicode:chardata() | OTP 23.2 |
render_callback(Module, Callback, Docs) -> Res | OTP 23.0 |
render_callback(Module, Callback, Docs, Config) -> Res | OTP 23.2 |
render_callback(Module, Callback, Arity, Docs) -> Res | OTP 23.0 |
render_callback(Module, Callback, Arity, Docs, Config) -> Res | OTP 23.2 |
Types
Render the documentation of a callback in a module.
validate(Module) -> ok | OTP 23.0 |
Types
This function can be used to do a basic validation of the doc content of application/erlang+html format.
normalize(Docs) -> NormalizedDocs | OTP 23.0 |
Types
This function can be used to do whitespace normalization of application/erlang+html documentation.
© 2010–2020 Ericsson AB
Licensed under the Apache License, Version 2.0.