Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docsify-edit-on-github

A plugin for docsify to generate a edit on github button on every pages. click the button to open corresponding md editing page on github.

<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<script>
  window.$docsify = {
    // your config
    // ...
    plugins: [
      EditOnGithubPlugin.create(docBase, docEditBase, title)
    ]
  }
</script>
  • docBase: [String] the document folder of your github project (e.g.: https://github.com/docsifyjs/docsify/blob/master/docs/)
  • docEditBase: [String] edit link of your github pages, by default, this is set automatically according to docBase
  • title: [String | Function] the text of the button, default value: Edit on github. If passed as function, then the title can be customized according to file path. for example:
      EditOnGithubPlugin.create(
        'https://github.com/docsifyjs/docsify/blob/master/docs/',
        null,
        function(file) {
          if (file.indexOf('en') === -1) {
            return '编辑'
          } else {
            return 'edit on git'
          }
        }
      )
    

Code example

Result example

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.