mmarkdown / mmark

Mmark: a powerful markdown processor in Go geared towards the IETF
https://mmark.miek.nl
Other
480 stars 45 forks source link

Incorrect GitHub Organization URL #194

Closed rrrix closed 1 year ago

rrrix commented 1 year ago

Hi @miekg,

The Organization URL of github.com/mmarkdown appears to be incorrect.

It currently is https://mmark.nl/ which appears to be some kind of SEO affiliate link aggregator unrelated to the mmarkdown/mmark project.

I believe it should be https://mmark.miek.nl/ (the same URL listed on the github.com/mmarkdown/mmark project page).

$ gh api \
  -H "Accept: application/vnd.github+json" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  /orgs/mmarkdown | jq "{id, login, name, description, blog, html_url, url}"
{
  "id": 33029025,
  "login": "mmarkdown",
  "name": "Mmarkdown",
  "description": "Mmark markdown parser",
  "blog": "https://mmark.nl",
        // ^^^^^^^^^^^^^^^^ -- should this be "https://mmark.miek.nl/"?
  "html_url": "https://github.com/mmarkdown",
  "url": "https://api.github.com/orgs/mmarkdown"
}

You should be able to update it here: https://github.com/organizations/mmarkdown/settings/profile

Apologies in advance if this is the wrong place to put this, or if the Organization URL is configured correctly.

miekg commented 1 year ago

Ha thanks, totally forgot about the url there.

Updated to point to mmark.miek.nl

Thanks!