Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

edoc_lib(3erl) [linux man page]

edoc_lib(3erl)						     Erlang Module Definition						    edoc_lib(3erl)

NAME
edoc_lib - Utility functions for EDoc. DESCRIPTION
Utility functions for EDoc. DATA TYPES
edoc_env() : Environment information needed by EDoc for generating references. The data representation is not documented. proplist() = property() (see module proplists) : EXPORTS
get_doc_env(App, Packages, Modules, Options::proplist()) -> edoc_env() Types App = [] | atom() Packages = [atom()] Modules = [atom()] [term()] Creates an environment data structure used by parts of EDoc for generating references, etc. See edoc:run/3 for a description of the options file_suffix , app_default and doc_path . See also: edoc:get_doc/3 , edoc_extract:source/4 . SEE ALSO
edoc AUTHORS
Richard Carlsson <richardc@it.uu.se > edoc 0.7.7 edoc_lib(3erl)

Check Out this Related Man Page

edoc_layout(3erl)					     Erlang Module Definition						 edoc_layout(3erl)

NAME
edoc_layout - The standard HTML layout module for EDoc. DESCRIPTION
The standard HTML layout module for EDoc. See the edoc module for details on usage. EXPORTS
module(Element, Options) -> term() The layout function. Options to the standard layout: {index_columns, integer()} : Specifies the number of column pairs used for the function index tables. The default value is 1. {pretty_printer, atom()} : Specifies how types and specifications are pretty printed. If the value erl_pp is specified the Erlang pretty printer (the mod- ule erl_pp ) will be used. The default is to do no pretty printing which implies that lines can be very long. {stylesheet, string()} : Specifies the URI used for referencing the stylesheet. The default value is "stylesheet.css" . If an empty string is specified, no stylesheet reference will be generated. {sort_functions, boolean()} : If true , the detailed function descriptions are listed by name, otherwise they are listed in the order of occurrence in the source file. The default value is true . {xml_export, Module::atom()} : Specifies an xmerl callback module to be used for exporting the documentation. See xmerl:export_simple/3 for details. See also: edoc:layout/2 . overview(E, Options) -> term() package(E, Options) -> term() type(E) -> term() SEE ALSO
edoc AUTHORS
Richard Carlsson <richardc@it.uu.se > edoc 0.7.7 edoc_layout(3erl)
Man Page