| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Imports Markdown from a remote site (like GitHub) into WordPress as pages.
Each importer needs to override the abstract methods:
The manifest should be a JSON object, with the keys set to the desired permalink (excluding the base path). Each item should also be a JSON object, containing the following keys:
Note: The Handbook index should have the slug index.
Example:
{
"foo": {
"title": "Temporary Foo Title",
"slug": "foo",
"markdown_source": "https://raw.githubusercontent.com/WordPress/doc-repo/master/foo.md",
"parent": null
},
"foo/bar": {
"title": "Temporary Bar Title",
"slug": "bar",
"markdown_source": "https://raw.githubusercontent.com/WordPress/doc-repo/master/foo/bar.md",
"parent": "foo"
},
"foo/bar/quux": {
"title": "Temporary Quux Title",
"slug": "quux",
"markdown_source": "https://raw.githubusercontent.com/WordPress/doc-repo/master/foo/bar/quux.md",
"parent": "foo/bar"
}
}| Back | FazBrowse Home | New Git URL |