mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
List all GStreamer elements on the plugins index page
This commit is contained in:
parent
2181268957
commit
7159236b52
3 changed files with 4 additions and 3 deletions
|
@ -29,7 +29,7 @@ all about.
|
||||||
|
|
||||||
* [GStreamer Core library](gstreamer)
|
* [GStreamer Core library](gstreamer)
|
||||||
* [GStreamer Libraries Reference](libs.md)
|
* [GStreamer Libraries Reference](libs.md)
|
||||||
* [GStreamer Plugins Reference](plugins_doc.md)
|
* [GStreamer Plugins Reference](gst-index)
|
||||||
|
|
||||||
> ![Warning](images/icons/emoticons/warning.svg) Only the API in libraries from
|
> ![Warning](images/icons/emoticons/warning.svg) Only the API in libraries from
|
||||||
> GStreamer core and gst-plugins-base are guaranteed to be API and ABI stable
|
> GStreamer core and gst-plugins-base are guaranteed to be API and ABI stable
|
||||||
|
|
|
@ -66,7 +66,8 @@ gstreamer_doc = hotdoc.generate_doc('GStreamer',
|
||||||
dependencies: deps,
|
dependencies: deps,
|
||||||
subprojects: hotdoc_subprojects,
|
subprojects: hotdoc_subprojects,
|
||||||
disable_incremental_build: true,
|
disable_incremental_build: true,
|
||||||
gst_list_plugins_page: 'plugins_doc.md',
|
gst_list_plugins_page: 'gst-index',
|
||||||
|
gst_index: join_paths(meson.current_source_dir(), 'markdown/plugins_doc.md'),
|
||||||
devhelp_activate: true,
|
devhelp_activate: true,
|
||||||
devhelp_online: 'https://gstreamer.freedesktop.org/documentation/',
|
devhelp_online: 'https://gstreamer.freedesktop.org/documentation/',
|
||||||
build_always_stale: true,
|
build_always_stale: true,
|
||||||
|
|
|
@ -16,7 +16,7 @@ if __name__ == "__main__":
|
||||||
if not lib:
|
if not lib:
|
||||||
continue
|
continue
|
||||||
index += "\n " + lib + '.json'
|
index += "\n " + lib + '.json'
|
||||||
index += '\n plugins_doc.md'
|
index += '\n gst-index'
|
||||||
for plugin in plugins:
|
for plugin in plugins:
|
||||||
if not plugin:
|
if not plugin:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue