diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-02-10 16:49:26 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-03-11 13:17:36 -0500 |
commit | 99b0d11c78c9fde7f5facbdf16ea5c6ab1e48e16 (patch) | |
tree | c407a1588737aa30390bde9273236275b115c765 /docs/pangoxft.toml.in | |
parent | b14514d8afb1c50a863beef5a43b360e47c0442f (diff) | |
download | pango-99b0d11c78c9fde7f5facbdf16ea5c6ab1e48e16.tar.gz |
Generate Pango API docs with gi-docgen
Stop using gtk-doc, and switch to gi-docgen.
The gi-docgen tool generates API references through the introspection
data, which has various benefits:
- it does not parse C code
- it does not generate and run C code to introspect types at build time
- it does not present a different API from the one we're exporting
Additionally, gi-docgen:
- does not generate DocBook XML in order to generate HTML
- does not go through xsltproc
- parses proper Markdown
Which makes it markedly faster than gtk-doc has ever been.
Diffstat (limited to 'docs/pangoxft.toml.in')
-rw-r--r-- | docs/pangoxft.toml.in | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/pangoxft.toml.in b/docs/pangoxft.toml.in new file mode 100644 index 00000000..241c0aa0 --- /dev/null +++ b/docs/pangoxft.toml.in @@ -0,0 +1,33 @@ +[library] +namespace = "PangoXft" +version = "@PANGO_VERSION@" +browse_url = "https://gitlab.gnome.org/GNOME/pango/" +repository_url = "https://gitlab.gnome.org/GNOME/pango.git" +website_url = "https://www.pango.org" +authors = "Owen Taylor, Behdad Esfahbod" +logo_url = "pango-name.png" +license = "GPL-2.1-or-later" +description = "Xft support for Pango" +dependencies = [ "Pango-1.0", "xft-2.0" ] + + [dependencies."Pango-1.0"] + name = "Pango" + description = "A library for layout out and rendering of text" + docs_url = "https://developer.gnome.org/pango/stable" + + [dependencies."xft-2.0"] + name = "Xft" + description = "X11 client-side font rendering library" + docs_url = "https://x.org" + +[theme] +name = "basic" + +[source-location] +base_url = "https://gitlab.gnome.org/GNOME/pango/-/blob/master/" + +[extra] + +content_images = [ + "pango-name.png" +] |