Instructions on how to generate docsets (for Dash) are found below. There is no method that is best for every case, so you'll have to consider all and decide which is the best for you. When your docset is ready, please contribute it to Dash.
Generate docsets from:
Generation script examples:
Improve your docset:
Dash can open DocC archives, as well as generate DocC for any Swift Package in Preferences > Downloads > Swift Docsets.
You can install docsets for any Sphinx-generated docs from Preferences > Downloads > Python Docsets.
Alternatively, use http://pypi.python.org/pypi/doc2dash to generate docsets from Sphinx or PyDoctor-generated documentation. When you're done generating your docset, check out some tips on how to improve it.
You can install docsets for Java libraries that are on Maven.org from Preferences > Downloads > Java Docsets.
Use https://github.com/Kapeli/javadocset to generate docsets from Javadoc-generated documentation. When you're done generating your docset, check out some tips on how to improve it.
You can install docsets for any Ruby Gem from Preferences > Downloads > Ruby Docsets.
You can install docsets for Scala libraries that are on Maven.org from Preferences > Downloads > Scala Docsets.
Use sbt-dash or mkscaladocset to generate docsets from Scaladoc-generated API documentation. Use scala-dash to generate docsets for Scala manuals. When you're done generating your docset, check out some tips on how to improve it.
You can install docsets for any Go Package from Preferences > Downloads > Go Docsets.
Use https://github.com/wuudjac/godocdash to generate docsets from GoDoc-generated documentation. When you're done generating your docset, check out some tips on how to improve it.
You can install docsets for any Hex Package from Preferences > Downloads > Hex Docsets.
You can install docsets for any Dart Package from Preferences > Downloads > Dart Docsets.
You can install docsets for any Haskell Package from Preferences > Downloads > Haskell Docsets.
You can install docsets for any Rust crate from Preferences > Downloads > Rust Docsets.
Use cargo-docset or rsdocs-dashing to generate docsets for Rust packages. When you're done generating your docset, check out some tips on how to improve it.
Use https://github.com/theasta/jsdoc-dash-template to generate docsets from JSDoc comments. When you're done generating your docset, check out some tips on how to improve it.
Doxygen can generate docsets from source files of C, C++, C#, PHP, Objective-C, Java, Python (and some others).
These are the entries you need to add into your Doxygen config file to make it generate a docset (note: the last 3 entries are optional):
GENERATE_DOCSET = YES DISABLE_INDEX = YES SEARCHENGINE = NO GENERATE_TREEVIEW = NO
When Doxygen is done generating the documentation, run make
inside the generated folder. Note: Doxygen requires docsetutil
, which is no longer available starting with Xcode 9.3. You need to either install Xcode 9.2 or older, or check out this GitHub repo for an alternative.
Don't forget to check out some tips on how to improve your docset.
Docsets are essentially just a folder containing the HTML documentation and a SQLite database that indexes the files.
If the HTML docs you want to index are well-formatted, it might be easier to generate the docset using Dashing or dash-docset-builder instead of writing your own generation script.
You can also use the general-purpose Docset Generator included in Dash, from Dash's Preferences > Downloads > Docset Generator.
The docset folder structure can be created using this Terminal command:
mkdir -p <docset name>.docset/Contents/Resources/Documents/
You can also manually create the docset structure if you want, they're just folders.
Copy the HTML documentation you already have to this folder:
<docset name>.docset/Contents/Resources/Documents/
Download and edit this sample Info.plist and place it in the <docset name>.docset/Contents/
folder. Editing should be straightforward, just set the values to whatever name you want for your docset.
Create a SQLite database in the file <docset name>.docset/Contents/Resources/docSet.dsidx
with the following query:
CREATE TABLE searchIndex(id INTEGER PRIMARY KEY, name TEXT, type TEXT, path TEXT);
Recommended: you can easily prevent adding duplicate entries to the index by also using this query:
CREATE UNIQUE INDEX anchor ON searchIndex (name, type, path);
You need to create a script (or application or whatever) that will go through your HTML documentation and add appropriate rows into the SQLite database. Rows can be added using this query:
INSERT OR IGNORE INTO searchIndex(name, type, path) VALUES ('name', 'type', 'path');
The values are:
name
is the name of the entry. For example, if you are adding a class, it would be the name of the class. This is the column that Dash searches.type
is the type of the entry. For example, if you are adding a class, it would be "Class". For a list of types that Dash recognises, see below.path
is the relative path towards the documentation file you want Dash to display for this entry. It can contain an anchor (#). Alternatively, Dash also supports http://
URL entries.You can find a few generation script examples here.
Please contact me if none of the currently supported types are suitable for what you're trying to index.
To allow easy navigation inside a large page, Dash is able to show a table of contents at the bottom left. This feature is described in the user guide.
Please note that adding table of contents support is a bit tricky (and optional).
When Dash displays a documentation page, it also looks for special anchors inside the HTML and generates a table of contents. To add table of contents support, you need to go through all the HTML pages and insert anchors in a format that Dash understands. The anchors need to be inserted in the HTML pages themselves.
The format for the anchors is:
<a name="//apple_ref/cpp/Entry Type/Entry Name" class="dashAnchor"></a>
The only things that you need to change in the format above are:
Entry type
- one of the supported entry types.Entry name
- the name that is shown by Dash in the table of contents. Preferably, it should be percent escaped.You can see an example of how to insert anchors at https://github.com/jkozera/zeal/blob/master/gendocsets/extjs/parse.py (in Python).
You'll also need to add this entry in the docset's Info.plist:
<key>DashDocSetFamily</key> <string>dashtoc</string>
Some notes:
You can specify the main page that Dash shows when the user opens a docset by adding the following to Info.plist:
<key>dashIndexFilePath</key> <string>index.html</string>
The path should be relative to the Documents
folder inside the docset. It can also be a http://
URL.
After adding the main page, remove and re-add the docset in Dash's Preferences.
To set a custom icon for your docset, simply add a icon.png
file directly inside the docset bundle. For example, the file path would be <docset name>.docset/icon.png
.
The size of the icon should be 16x16 or 32x32. For Retina display support, you can either use a single 32x32 icon or 2 separate icons: icon.png
(16x16) and icon@2x.png
(32x32).
After adding the icon, remove and re-add the docset in Dash's Preferences.
Starting with version 3.0, Dash users can open the online version of pages inside docsets. To do that, Dash needs to know where to find the online pages for your docset.
You have 2 options to support online redirection:
DashDocSetFallbackURL
key in your docset's Info.plist. The value should be the base URL of the docs. Example: https://docs.python.org/3/library/
Alternatively, add a HTML comment inside each and every HTML file of your docset. The comment needs to be added next to the <html>
tag of the pages and should look like this:
<html><!-- Online page at https://docs.python.org/3/library/intro.html -->
Starting with version 4.0, Dash now shows a play button next to docsets which takes users to a playground for the language/framework of the docset. To support it you need to:
DashDocSetPlayURL
key in your docset's Info.plist. The value should be the URL of the docset playground. Example: https://repl.it/F9J7/1
for the Swift docset.By default, Dash does not allow external .js
scripts. You can enable them by adding this entry to the docset's Info.plist:
<key>isJavaScriptEnabled</key><true/>
After adding this entry, remove and re-add the docset in Dash's Preferences.
Full-text search is disabled for docsets by default and users can enable it from within Dash's interface. If you want, you can have your docset default to having full-text search enabled by adding the following key to Info.plist
:
<key>DashDocSetDefaultFTSEnabled</key><true/>
You can also disable full-text search support completely for your docset (i.e. users won't be able to enable it at all) by adding this key to Info.plist
:
<key>DashDocSetFTSNotSupported</key><true/>
Important: It is highly recommended that you contribute your docset to Dash instead of setting up a docset feed. Docset feeds should only be used for docsets which only you, your team or very few users find useful.
Documentation feeds allow Dash users to conveniently install and update docsets. If you want to distribute a docset you should set up a feed for it, so that you'll be able to update it in the future.
Dash documentation feeds are very simple, check one out: NodeJS_Sample.xml.
It's a XML file that contains the following:
<entry>
element
<version>
element. You can use any versioning system you want. Dash will use string comparison to determine whether or not to download an update.<url>
elements. These point to the URL of the archived docset.To archive your docset, use the following command:
tar --exclude='.DS_Store' -cvzf <docset name>.tgz <docset name>.docset
Currently only one docset per feed is supported (only one <entry>
).
You can share docset feeds using a custom URL scheme, which will allow Dash to subscribe to that feed with a single click.
dash-feed://<URL encoded feed URL>
By URL encoded, I mean percent-encoding (e.g. what you’d get by clicking the encode button here).
Example: