repo_url not working
When I add repo_url to my mkdocs.yml it does not work. Here is my mkdocs.yml
site_name: Blueprint Documentation
repo_url: https://github.com/steaks/blueprint
nav:
  - Home: index.md
  - 'Quick Start': quickStart.md
  - 'Tutorial': tutorial.md
  - 'Why Blueprint': whyBlueprint.md
  - Architecture: architecture.md
  - Examples: examples.md
theme:
  name: gitbook
  highlightjs: true
plugins:
#  - search
  - mkdocstrings:
      handlers:
        # See: https://mkdocstrings.github.io/python/usage/
        python:
          options:
            docstring_style: sphinx
markdown_extensions:
  - markdown_include.include:
      base_path: .
  - admonition