Questions tagged [docsify]

39 questions
7
votes
0 answers

How to add user authentication to docsifyjs

I am using docsifyjs to create a documentation. But I wanted to add Authentication to access the docs. Basically we serve the docs with following commands Initializing docsify docsify init ./docs After the init is complete, you can see the file…
4
votes
0 answers

Integrate jsdoc into docsify

Im trying to document my node.js/javascript application. The frontend is a vue app & backend a node.js app. I use jsdoc to document classes/modules etc. and need a way to integrate that into docsify. At first i wanted to document the whole…
Marc
  • 2,920
  • 3
  • 14
  • 30
4
votes
2 answers

Prism.js syntax highighting not working

I'm using Docsify to serve documentation about my project. For the syntax highlighting I want to use prism.js. Sadly, the highlighting part does not work. I've also tried all the suggestions mentioned here. In my index.html I have
Kevin Etore
  • 1,046
  • 3
  • 14
  • 32
3
votes
1 answer

how to change the color of arrows in marmaid.js

here is an example of my md file %%{init: {'securityLevel': 'loose', 'theme': 'base', 'themeVariables': { 'darkMode': false, 'primaryColor': '#ffaacc', 'fontSize': '14px', 'lineColoe': '#0404ff', 'edgeLabelBackground':'#ffffaa'}}}%% graph LR …
dongrixinyu
  • 172
  • 2
  • 14
3
votes
1 answer

Docsify search plugin. Accents marks

It posible that search plugin ignore accents marks (tildes) ? for example: i want that the articulo to be the same the artículo and reverse. thx!
EloFran
  • 31
  • 2
3
votes
2 answers

Documentation from several github repositories into a static site

I need to some help to identify the correct solution that would help me create a seamless documentation for my friends. We have several repositories in which a doc folder with several .MD files are going to be placed Repo1 |- Readme.MD |-docs |-…
testeurFou
  • 71
  • 3
  • 11
2
votes
1 answer

API Documentation On Docsify?

What's the "best" way to display API Documentation on doscify? I currently use gitbook, which looks like this, https://file.coffee/u/0l-TVj93mr.png But I want to migrate to docsify so I can have more control over my docs. Does anyone have any…
Anish Anne
  • 193
  • 3
  • 15
2
votes
2 answers

Docsify search plugin not working, always return no reulst

problem descritpion i try to use the search function of docsifyk, but it seems not working. steps to reproduce so i do these steps: (following the official docsify documentation) i run 'docsify init' in a directory, so it generate a 'index.html'…
fish7
  • 21
  • 3
2
votes
1 answer

Docsify images using AWS Amplify

Trying to deploy Docsify to Amplify my images are not showing up. So, the official guide tells you a couple of tips (redirects and history mode) but nothing about images paths. I'm trying logo: '../_media/logo64.png', logo:…
Rodrigo Asensio
  • 2,760
  • 4
  • 26
  • 26
2
votes
2 answers

Error using Docsify in an Azure Web App

I'm trying to run Docsify in an Azure Web App. I'm getting a 404 that looks like there's something I'm missing about configuring the site, perhaps? Failed to load resource: the server responded with a status of 404 (Not Found) index.html/README.md…
Sean Kearon
  • 10,987
  • 13
  • 77
  • 93
1
vote
1 answer

How to make the sidebar wider in docsify?

I have tried the following in section of index.html and it does nothing: This is with a vanilla usage of docsify.
mathtick
  • 6,487
  • 13
  • 56
  • 101
1
vote
2 answers

I cannot get a colored code with docsify?

I am using docsify to build a documentation for my API. However when I insert code block (especially json) the code is written in black. I don't know how to change it. Any suggestion ?
John doe
  • 3,680
  • 7
  • 31
  • 65
1
vote
1 answer

how to use dark theme, translation and searching on docsify.js?

source here: https://github.com/VladKochetov007/quick_trade.github.io docsify: https://docsify.js.org/#/ my tree: project └── quick_trade.github.io ├── docs │ ├── .nojekyll │ ├── index.html │ └── README.md └──…
VladKochetov
  • 105
  • 2
  • 12
1
vote
1 answer

Link an "external" file in docsify

This is my documentation files structure |__docs/ | |__config-docsify.js | |__index.html | |__README.md |__README.md As you can see, the Docsify files are in docs/ directory and I would like to link the /docs/README.md file to root the README file…
Wesley Gonçalves
  • 1,985
  • 2
  • 19
  • 22
1
vote
2 answers

Basic flask implementation of Docsify documentation

I came across Docsify (https://docsify.js.org/#/) and have had fun experimenting with it. I'm interested in serving some documentation using my own flask server, instead of Github Pages or with node, however I can't figure out how to implement…
RancheroBeans
  • 500
  • 1
  • 6
  • 15
1
2 3