Reputation: 23140
I'm building a Gtk3 application using Python. I was wondering if there was a standard way for building and displaying inline help (the manual). More specifically:
Finally, in the ideal case, it should be cross-platform (e.g. I plan to port it to Windows)
Upvotes: 2
Views: 200
Reputation: 11454
Didn't know your app needed to be multiplatform. Be careful, because GTK3 on Windows is quite difficult to use for the time being (AFAIK there are no official installer either for GTK3 nor PyGObject on Windows, only community stuff).
On Linux, GNOME uses Yelp to handle documentation, but I don't know if it has been ported to Windows.
Upvotes: 2