Skip to content

Commit

Permalink
Handle anchors in doc_url() correctly. (pantsbuild#15812)
Browse files Browse the repository at this point in the history
[ci skip-rust]

[ci skip-build-wheels]
  • Loading branch information
benjyw committed Jun 14, 2022
1 parent 9e2e1f6 commit 4b490e6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
7 changes: 5 additions & 2 deletions build-support/bin/generate_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@

logger = logging.getLogger(__name__)

DOC_URL_RE = re.compile(r"https://www.pantsbuild.org/v(\d+\.[^/]+)/docs/(?P<slug>[a-zA-Z0-9_-]+)")
DOC_URL_RE = re.compile(
r"https://www.pantsbuild.org/v(\d+\.[^/]+)/docs/(?P<slug>[a-zA-Z0-9_-]+)(?P<anchor>#[a-zA-Z0-9_-]+)?"
)


def main() -> None:
Expand Down Expand Up @@ -114,10 +116,11 @@ def _rewrite_url(self, mo: re.Match) -> str:
# The docsite injects the version automatically at markdown rendering time, so we
# must not also do so, or it will be doubled, and the resulting links will be broken.
slug = mo.group("slug")
anchor = mo.group("anchor") or ""
title = self._slug_to_title.get(slug)
if not title:
raise ValueError(f"Found empty or no title for {mo.group(0)}")
return f"[{title}](doc:{slug})"
return f"[{title}](doc:{slug}{anchor})"

def rewrite(self, s: str) -> str:
return DOC_URL_RE.sub(self._rewrite_url, s)
Expand Down
12 changes: 8 additions & 4 deletions build-support/bin/generate_docs_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ def test_gather_value_strs():
assert set(value_strs_iter(help_info)) == {"foo", "bar", "baz", "qux", "quux"}


@pytest.mark.parametrize("slug", ["foo-bar", "baz3", "qux"])
def test_slug_for_url(slug: str) -> None:
assert get_doc_slug(doc_url(slug)) == slug
@pytest.mark.parametrize("arg", ["foo-bar", "baz3", "qux#anchor"])
def test_slug_for_url(arg: str) -> None:
expected_slug = arg.split("#")[0]
assert get_doc_slug(doc_url(arg)) == expected_slug


def test_slug_for_url_error() -> None:
Expand Down Expand Up @@ -66,4 +67,7 @@ def test_doc_url_rewriter():
}
)
assert dur.rewrite(f"See {doc_url('foo')} for details.") == "See [Foo](doc:foo) for details."
assert dur.rewrite(f"Check out {doc_url('bar')}.") == "Check out [Welcome to Bar!](doc:bar)."
assert (
dur.rewrite(f"Check out {doc_url('bar#anchor')}.")
== "Check out [Welcome to Bar!](doc:bar#anchor)."
)

0 comments on commit 4b490e6

Please sign in to comment.