Returns the file path for the documentation for the given API symbol.
tfdocs.parser.documentation_path(
full_name, is_fragment=False
)
Given the fully qualified name of a library symbol, compute the path to which
to write the documentation for that symbol (relative to a base directory).
Documentation files are organized into directories that mirror the python
module/class structure.
Args |
full_name
|
Fully qualified name of a library symbol.
|
is_fragment
|
If False produce a page link (tf.a.b.c -->
tf/a/b/c.md ). If True produce fragment link, tf.a.b.c -->
tf/a/b#c
|
Returns |
The file path to which to write the documentation for full_name .
|