README: new URL, copyright year, etc.

This commit is contained in:
Asherah Connor 2024-01-18 18:44:21 +11:00
parent 4c909b654c
commit bb104e688d
5 changed files with 13 additions and 10 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 20172023, Asherah Connor
Copyright (c) 20172024, Ashe Connor
All rights reserved.

View File

@ -1,11 +1,11 @@
[package]
name = "comrak"
version = "0.20.0"
authors = ["Asherah Connor <ashe@kivikakk.ee>"]
authors = ["Ashe Connor <ashe@kivikakk.ee>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"
homepage = "https://github.com/kivikakk/comrak"
repository = "https://github.com/kivikakk/comrak"
homepage = "https://hrzn.ee/kivikakk/comrak"
repository = "https://hrzn.ee/kivikakk/comrak"
readme = "README.md"
keywords = ["markdown", "commonmark"]
license = "BSD-2-Clause"

View File

@ -17,7 +17,7 @@ build-comrak-branch:
cp ${ROOT}/target/release/comrak ${ROOT}/benches/comrak-${COMMIT}
build-comrak-master:
git clone https://github.com/kivikakk/comrak.git --depth 1 --single-branch ${ROOT}/vendor/comrak || true
git clone https://hrzn.ee/kivikakk/comrak.git --depth 1 --single-branch ${ROOT}/vendor/comrak || true
cd ${ROOT}/vendor/comrak && \
cargo build --release && \
cp ./target/release/comrak ${ROOT}/benches/comrak-main

View File

@ -1,4 +1,4 @@
# Comrak
# [Comrak](https://hrzn.ee/kivikakk/comrak)
[![Build Status](https://github.com/kivikakk/comrak/actions/workflows/rust.yml/badge.svg)](https://github.com/kivikakk/comrak/actions/workflows/rust.yml) ![Spec
Status: 671/671](https://img.shields.io/badge/specs-671%2F671-brightgreen.svg) [![Financial Contributors on Open
@ -302,7 +302,10 @@ Contributions are highly encouraged; where possible I practice [Optimistic Mergi
described by Peter Hintjens. Please keep the [code of conduct](CODE_OF_CONDUCT.md) in mind when interacting with this
project.
Thank you to comrak's many contributors for PRs and issues opened\!
For now the preferred method is [pull requests on GitHub](https://github.com/kivikakk/comrak), in
order to maximise the number of eyes, but a mailing list for patches is in the works.
Thank you to Comrak's many contributors for PRs and issues opened\!
### Code Contributors
@ -338,11 +341,11 @@ Support this project with your organization. Your logo will show up here with a
## Contact
Asherah Connor \<ashe kivikakk ee\>
Ashe Connor \<ashe kivikakk ee\>
## Legal
Copyright (c) 20172023, Asherah Connor. Licensed under the [2-Clause BSD
Copyright (c) 20172024, Asherah Connor. Licensed under the [2-Clause BSD
License](https://opensource.org/licenses/BSD-2-Clause).
`cmark` itself is is copyright (c) 2014, John MacFarlane.

View File

@ -1,5 +1,5 @@
//! A 100% [CommonMark](http://commonmark.org/) and [GFM](https://github.github.com/gfm/)
//! compatible Markdown parser. Source repository is at <https://github.com/kivikakk/comrak>.
//! compatible Markdown parser. Source repository is at <https://hrzn.ee/kivikakk/comrak>.
//!
//! The design is based on [cmark-gfm](https://github.com/github/cmark-gfm), so
//! familiarity with that will help.