Swift-DocC-Render is a web Single Page Application (SPA) powered by Vue.js for creating rich code documentation websites. Pages and content are generated using render JSON data from DocC. It comes with a well suited design for documentation websites. SPAs are web apps that render dynamically at runtime entirely in the browser, using JavaScript.
Swift-DocC is a tool for building and previewing documentation, aimed at making it easy to generate reference documentation from frameworks and packages, as well as free-form articles and tutorials authored in Markdown. It produces a folder in the Documentation Archive format (extension .doccarchive
), which contains a machine-readable output of the documentation as JSON data that Swift-DocC-Render uses to produce rendered documentation.
Note: requires Node.js v18 and npm v9.5. An easy way to set these up is to install nvm and run
nvm install
from within the Swift-DocC-Render repository. To use these versions as the default, add--default
to the installation command.
-
Download this repository and go to its folder
git clone https://github.com/apple/swift-docc-render.git cd swift-docc-render
-
Install dependencies
npm install
-
Run a local server with hot reload at localhost:8080
You may want to set a proxy to handle data requests while developing locally by setting the VUE_APP_DEV_SERVER_PROXY env variable to a documentation archive (.doccarchive or .docc-build) on your disk or served in a HTTP endpoint:
VUE_APP_DEV_SERVER_PROXY=[path to documentation archive] npm run serve
As an alternative you can just create a
.env.development.local
file on the root of the project to add theVUE_APP_DEV_SERVER_PROXY
env variable so you don't have to set it in thenpm run serve
script each time.
Follow these steps to generate a documentation archive, set the path to your renderer and render locally your documentation using Swift-DocC-Render.
You need to have DocC installed, in order to preview and build documentation. Read Getting Started with Swift to learn more.
To preview the docs, run npm run docs:preview
. This will spawn a preview server on http://localhost:8000/documentation/swiftdoccrender.
To build the docs, run npm run docs:build
.
Swift-DocC-Render tracks all bug reports with GitHub. When you submit a bug report we ask that you follow the Swift Bug Reporting guidelines and provide as many details as possible.
If you can confirm that the bug occurs when using the latest commit of Swift-DocC
from the main
branch (see Building Swift-DocC-Render),
that will help us track down the bug faster.
For feature requests, please feel free to create an issue
on GitHub with the New Feature
type
or start a discussion on the Swift Forums.
Don't hesitate to submit a feature request if you see a way Swift-DocC-Render can be improved to better meet your needs.
All user-facing features must be discussed in the Swift Forums before being enabled by default.
Please see the contributing guide for more information.