# ddocs-tool **Repository Path**: dkvirus/ddocs-tool ## Basic Information - **Project Name**: ddocs-tool - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-16 - **Last Updated**: 2022-02-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## DDOCS create a empty dir, and write your md file. ``` |-- my_docs |-- javascript.md |-- css.md |-- index.md ``` ## ddocs build The build directory is generated under the root directory to convert the MD file to HTML. ``` bash $ cd my_docs $ ddocs build ``` ## ddocs serve Run a local static service where you can view documents by visit http://localhost:8080 ``` bash $ cd my_docs $ ddocs serve # default port is 8080 , default host is localhost or $ ddocs serve -p 8000 -h 127.0.0.1 ```