🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

docsify-docbucket

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docsify-docbucket

A Docsify plugin that help building documentation site with Docsify and Pages for Bitbucket Server

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

docsify-docbucket

NPM License: MIT Issues

A Docsify plugin that help building documentation site with Docsify and Pages for Bitbucket Server. The plugin require docsify-bitbucket plugin as dependency. This plugin works with Bitbucket Server only, Bitbucket Cloud not supported.

Installation

Add following script tags to your index.html after docsify.

<script src="//cdn.jsdelivr.net/npm/docsify-bitbucket"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-docbucket"></script>

Options

navbar

If loadNavbar parameter is missing from Docsify configuration then the plugin will use _navbar.md from the doc repository in the current Bitbucket Server project. You can disable this feature:

window.$docsify = {
  docbucket: {
    noNavbar : true
  }
}

style

By default the plugin will load style.css from the doc repository in the current Bitbucket Server project. You can disable this feature:

window.$docsify = {
  docbucket: {
    noStyle : true
  }
}

script

The plugin is able to load script (JavaScript) script.js from the doc repository in the current Bitbucket Server project. You can enable this feature:

window.$docsify = {
  docbucket: {
    loadScript : true
  }
}

You can also specify other script file name:

window.$docsify = {
  docbucket: {
    loadScript : '/;r=doc/plugin.js'
  }
}

License

This project is licensed under the MIT License. See the LICENSE for details.

Keywords

docsify

FAQs

Package last updated on 24 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts