Metadata-Version: 2.1
Name: addbioschemas
Version: 0.0.2
Summary: A markdown extension to add bioschemas markup to rendered html
Author-email: Geert van Geest <geert.vangeest@sib.swiss>
Project-URL: Homepage, https://github.com/GeertvanGeest/addbioschemas/
Project-URL: Issues, https://github.com/GeertvanGeest/addbioschemas/issues
Description-Content-Type: text/markdown
Requires-Dist: markdown
Requires-Dist: pyyaml

# Adding bioschemas to mkdocs

A small markdown extension to add bioschemas to mkdocs. It requires a yaml file with bioschemas markup, and adds it to the rendered html. 

## Installation

```bash
pip install addbioschemas
```

## Usage

A markdown snippet of a page where you want to add bioschemas to:

```markdown
# awesome title
[add-bioschemas]
I started with some YAML and turned it into JSON-LD
```

A yaml file with the bioschemas markup:

```yaml
"@context": https://schema.org/
"@type": LearningResource
"@id": https://elixir-europe-training.github.io/ELIXIR-TrP-LessonTemplate-MkDocs/
http://purl.org/dc/terms/conformsTo:
  "@type": CreativeWork
  "@id": https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE
description: Template for ELIXIR lessons
keywords: FAIR, OPEN, Bioinformatics, Teaching
name: ELIXIR Training Lesson template
# lookup at https://spdx.org/licenses/
license: CC-BY-4.0
author:
- "@type": Person
  name: Geert van Geest
  email: geert.vangeest@sib.swiss
  github: GeertvanGeest
  orcid: 0000-0002-1561-078X
- "@type": Person
  name: Elin Kronander
  github: elinkronander
  orcid: 0000-0003-0280-6318
```

Add to `mkdocs.yml`:

```yaml
markdown_extensions:
  - addbioschemas:
     yaml: 'path/to/yaml/metadata.yaml'
```
