Metadata-Version: 2.1
Name: MkDocsJsonSchemaPlugin
Version: 0.0.2
Summary: MkDocs Plugin to parse json schemas.
Home-page: https://github.com/galamdring/mkdocs-json-schema-plugin
Author: Luke McKechnie
Author-email: galamdring@gmail.com
License: MIT license
Keywords: mkdocs,plugin,json,schema
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
Requires-Dist: mkdocs
Requires-Dist: webpreview (>=1.6.0)

# MkDocs Json Schema Plugin

MkDocs Plugin to parse json schema files.

To use this plugin, install it with pip in the same environment as MkDocs:

```
pip install MkDocsJsonSchemaPlugin
```

Then add the following entry to the MkDocs config file:

```yml
plugins:
  - json-schema:
      json_schema: "docs/item.schema.json"
```

In your target file, add a tag to be replaced
```
#JsonSchema#
```


