-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation website maintenance (#4486)
* Use correct path for WorkingLocally * Plugin init is now deprecated * docsify-copy-code stylesheet is deprecated * Use HTTPS, set Docsify version to 4.7.1 and copy-code to version 2 Couple of Docsify Github issues point that there are some rendering problems with 4.8.3 so let's anchor Docsify at 4.7.1 for now
- Loading branch information
Showing
2 changed files
with
11 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,7 @@ | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<link rel="shortcut icon" href="_images/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="_images/favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css"> | ||
<link rel="stylesheet" href="//unpkg.com/docsify-copy-code/styles.css"> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/themes/vue.css"> | ||
|
||
<style> | ||
/* diff syntax highlighting */ | ||
|
@@ -30,7 +29,7 @@ | |
|
||
<body> | ||
<div id="app">Please wait...</div> | ||
<script src="//unpkg.com/docsify-copy-code"></script> | ||
<script src="https://unpkg.com/docsify-copy-code@2"></script> | ||
<script> | ||
window.$docsify = { | ||
name: 'React Native Navigation', | ||
|
@@ -44,19 +43,16 @@ | |
}, | ||
subMaxLevel: 2, | ||
auto2top: true, | ||
plugins: [ | ||
window.DocsifyCopyCodePlugin.init() | ||
] | ||
} | ||
</script> | ||
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script> | ||
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-typescript.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-jsx.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-java.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-c.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-objectivec.min.js"></script> | ||
<script src="//unpkg.com/prismjs/components/prism-diff.min.js"></script> | ||
<script src="https://unpkg.com/docsify@4.7.1/lib/docsify.min.js"></script> | ||
<script src="https://unpkg.com/docsify@4.7.1/lib/plugins/search.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-typescript.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-jsx.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-java.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-c.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-objectivec.min.js"></script> | ||
<script src="https://unpkg.com/prismjs/components/prism-diff.min.js"></script> | ||
|
||
<!-- this allows us to re-run docs even when offline --> | ||
<script> | ||
|