You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did not find a bot repository, and this repo has the dom fetchers throw fetch errors, so I assume the bot repo is private. So I am creating this ticket here.
The inline code syntax is used across two lines and list
Presumably the error type was supposed to be code-marked, so the closing backtick is missing after it, and the one after the URL is wrong.
Using ' around the URL erroneously links it as part of the href
In Markdown <url> can be used for urls as-is - so that should be used for the URL.
The text was updated successfully, but these errors were encountered:
Previously, errors were reported on a single line, where the inline code-fencing on message worked.
The current logic is:
The html fetcher throws FetchDocumentErrors, with the URL fenced with apostrophe `'`.
Archivist collects these errors in InaccessibleContentError, which produces a multiline error message (generic text + foreach(\n- error)).
Because the message is multiline now, the inline code fencing with backticks no longer worked.
As a side effect, the GitHub URL identification included the closing '` in the URL. Without the ` the ' is not included either.
Dropping the now invalid backticks resolves both issues.
FixesOpenTermsArchive#967
I did not find a bot repository, and this repo has the dom fetchers throw fetch errors, so I assume the bot repo is private. So I am creating this ticket here.
Presumably the error type was supposed to be code-marked, so the closing backtick is missing after it, and the one after the URL is wrong.
'
around the URL erroneously links it as part of the hrefIn Markdown
<url>
can be used for urls as-is - so that should be used for the URL.The text was updated successfully, but these errors were encountered: