Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to penman-js and use logo in README #138

Merged
merged 1 commit into from
Jan 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@

# Penman — a Python library for PENMAN graph notation
<div align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="/docs/_static/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="/docs/_static/logo-light.svg">
<img alt="Shows the Penman logo: a slash character between two parentheses." src="/docs/_static/logo-light.svg">
</picture>
</div>
<h1 align="center">Penman &ndash; a library for PENMAN graph notation</h1>
<div align="center">

[![PyPI Version](https://img.shields.io/pypi/v/penman.svg)](https://pypi.org/project/Penman/)
![Python Support](https://img.shields.io/pypi/pyversions/penman.svg)
[![.github/workflows/checks.yml](https://github.com/goodmami/penman/actions/workflows/checks.yml/badge.svg?branch=main)](https://github.com/goodmami/penman/actions/workflows/checks.yml)
[![Documentation Status](https://readthedocs.org/projects/penman/badge/?version=latest)](https://penman.readthedocs.io/en/latest/?badge=latest)

</div>

This package models graphs encoded in [PENMAN
notation](#penman-notation) (e.g., [AMR][]), such as the following for
Expand All @@ -21,6 +29,8 @@ notation](#penman-notation) (e.g., [AMR][]), such as the following for
The Penman package may be used as a Python [library](#library-usage)
or as a [script](#script-usage).

For Javascript, see [chanind/penman-js](https://github.com/chanind/penman-js).


### Features

Expand Down
Loading