Skip to content

Commit bfa8151

Browse files
committed
Chore: Rename GitHub organization
1 parent b70c91e commit bfa8151

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Technical Writing on HubSpot
22

3-
[![Tests](https://github.com/crate-workbench/hubspot-tech-writing/actions/workflows/main.yml/badge.svg)](https://github.com/crate-workbench/hubspot-tech-writing/actions/workflows/main.yml)
4-
[![Test coverage](https://img.shields.io/codecov/c/gh/crate-workbench/hubspot-tech-writing.svg)](https://codecov.io/gh/crate-workbench/hubspot-tech-writing/)
3+
[![Tests](https://github.com/tech-writing/hubspot-tech-writing/actions/workflows/main.yml/badge.svg)](https://github.com/tech-writing/hubspot-tech-writing/actions/workflows/main.yml)
4+
[![Test coverage](https://img.shields.io/codecov/c/gh/tech-writing/hubspot-tech-writing.svg)](https://codecov.io/gh/tech-writing/hubspot-tech-writing/)
55
[![Python versions](https://img.shields.io/pypi/pyversions/hubspot-tech-writing.svg)](https://pypi.org/project/hubspot-tech-writing/)
66

7-
[![License](https://img.shields.io/github/license/crate-workbench/hubspot-tech-writing.svg)](https://github.com/crate-workbench/hubspot-tech-writing/blob/main/LICENSE)
7+
[![License](https://img.shields.io/github/license/tech-writing/hubspot-tech-writing.svg)](https://github.com/tech-writing/hubspot-tech-writing/blob/main/LICENSE)
88
[![Status](https://img.shields.io/pypi/status/hubspot-tech-writing.svg)](https://pypi.org/project/hubspot-tech-writing/)
99
[![PyPI](https://img.shields.io/pypi/v/hubspot-tech-writing.svg)](https://pypi.org/project/hubspot-tech-writing/)
1010
[![Downloads](https://pepy.tech/badge/hubspot-tech-writing/month)](https://pypi.org/project/hubspot-tech-writing/)
@@ -18,12 +18,12 @@
1818
| [Source code]
1919
| [License]
2020

21-
[Changelog]: https://github.com/crate-workbench/hubspot-tech-writing/blob/main/CHANGES.md
21+
[Changelog]: https://github.com/tech-writing/hubspot-tech-writing/blob/main/CHANGES.md
2222
[Documentation]: https://hubspot-tech-writing.readthedocs.io/
23-
[Issues]: https://github.com/crate-workbench/hubspot-tech-writing/issues
24-
[License]: https://github.com/crate-workbench/hubspot-tech-writing/blob/main/LICENSE
23+
[Issues]: https://github.com/tech-writing/hubspot-tech-writing/issues
24+
[License]: https://github.com/tech-writing/hubspot-tech-writing/blob/main/LICENSE
2525
[PyPI]: https://pypi.org/project/hubspot-tech-writing/
26-
[Source code]: https://github.com/crate-workbench/hubspot-tech-writing
26+
[Source code]: https://github.com/tech-writing/hubspot-tech-writing
2727

2828

2929
## About
@@ -52,13 +52,13 @@ hstw --version
5252
### Markup Conversion
5353
You can convert a Markdown file on your workstation, and write the output to an HTML file.
5454
```shell
55-
wget -O original.md https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
55+
wget -O original.md https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
5656
hstw convert original.md converted.html
5757
```
5858

5959
Alternatively, convert a Markdown file at a remote location, and write the output to STDOUT.
6060
```shell
61-
hstw convert https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
61+
hstw convert https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
6262
```
6363

6464
### Link Checker
@@ -71,7 +71,7 @@ hstw linkcheck original.md
7171

7272
Alternatively, you can also use a remote resource here.
7373
```shell
74-
hstw linkcheck https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
74+
hstw linkcheck https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
7575
```
7676

7777
### HubSpot Upload

docs/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sandbox on your workstation, and how to run the software tests.
88
Acquire source code and install development sandbox. The authors recommend
99
to use a Python virtualenv.
1010
```shell
11-
git clone https://github.com/crate-workbench/hubspot-tech-writing
11+
git clone https://github.com/tech-writing/hubspot-tech-writing
1212
cd hubspot-tech-writing
1313
python3 -m venv .venv
1414
source .venv/bin/activate
@@ -45,4 +45,4 @@ adding the changelog items from the [](../CHANGES.md) file instead of the items
4545
automatically generated by GitHub.
4646

4747

48-
[release page on GitHub]: https://github.com/crate-workbench/hubspot-tech-writing/releases
48+
[release page on GitHub]: https://github.com/tech-writing/hubspot-tech-writing/releases

hubspot_tech_writing/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def help_convert():
2222
hstw convert original.md converted.html
2323
2424
# Convert remote Markdown resource.
25-
hstw convert https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
25+
hstw convert https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
2626
2727
""" # noqa: E501
2828

@@ -38,7 +38,7 @@ def help_linkcheck():
3838
hstw linkcheck document.md
3939
4040
# Check Markdown file at remote location.
41-
hstw linkcheck https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
41+
hstw linkcheck https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md
4242
4343
""" # noqa: E501
4444

@@ -76,7 +76,7 @@ def help_upload():
7676
7777
# You can also address a Markdown file at a remote location, convert it to HTML,
7878
# and upload to HubSpot in one go.
79-
hstw upload https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md --name=testdrive
79+
hstw upload https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md --name=testdrive
8080
8181
""" # noqa: E501
8282

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ optional-dependencies.test = [
9090
"pytest-cov<7",
9191
"pytest-mock<4",
9292
]
93-
urls.changelog = "https://github.com/crate-workbench/hubspot-tech-writing/blob/main/CHANGES.md"
94-
urls.documentation = "https://github.com/crate-workbench/hubspot-tech-writing"
95-
urls.homepage = "https://github.com/crate-workbench/hubspot-tech-writing"
96-
urls.repository = "https://github.com/crate-workbench/hubspot-tech-writing"
93+
urls.changelog = "https://github.com/tech-writing/hubspot-tech-writing/blob/main/CHANGES.md"
94+
urls.documentation = "https://github.com/tech-writing/hubspot-tech-writing"
95+
urls.homepage = "https://github.com/tech-writing/hubspot-tech-writing"
96+
urls.repository = "https://github.com/tech-writing/hubspot-tech-writing"
9797
scripts.hstw = "hubspot_tech_writing.cli:cli"
9898

9999
[tool.setuptools]

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_convert_file(markdownfile):
1414

1515

1616
def test_convert_url():
17-
url = "https://github.com/crate-workbench/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md"
17+
url = "https://github.com/tech-writing/hubspot-tech-writing/raw/main/tests/data/hubspot-blog-post-original.md"
1818
html = convert(url)
1919
check_content(html)
2020

0 commit comments

Comments
 (0)