Download arXiv HTML papers and convert them to LLM-ready Markdown
Project description
ar2md
Download a versioned arXiv paper as HTML and convert it to LLM-ready Markdown with Pandoc. Native arXiv HTML is preferred; papers without it fall back to ar5iv.
Requirements
- GNU Wget
- Pandoc 3.x
Set WGET or PANDOC to an executable path when either tool is not on PATH.
Run without installing
uvx ar2md 1706.03762v7
Install as a uv tool
uv tool install ar2md
ar2md 1706.03762v7
The PyPI distribution and installed executable are both named ar2md.
To run an unreleased commit directly from GitHub:
uvx --from git+https://github.com/cs-giung/ar2md ar2md 1706.03762v7
uv tool install git+https://github.com/cs-giung/ar2md
A version is required so that the local reference is reproducible. For convenience, the common extra-dot spelling 1706.03762.v7 is accepted and normalized to 1706.03762v7. Versioned arXiv abs, html, and pdf URLs are also accepted.
Output
The default mirror root is ./ar2md. Files retain their source hostname:
ar2md/
├── 1706.03762v7.md -> arxiv.org/html/1706.03762v7.md
├── 1706.03762v7 -> arxiv.org/html/1706.03762v7
├── index.jsonl
├── arxiv.org/ # preferred source
│ ├── html/
│ │ ├── 1706.03762v7.html
│ │ ├── 1706.03762v7.md
│ │ └── 1706.03762v7/
│ └── static/
└── ar5iv.labs.arxiv.org/ # created only for fallback papers
├── html/
│ ├── 1503.02531v1.html
│ └── 1503.02531v1.md
└── assets/
Choose another mirror root with --output-dir:
ar2md 1706.03762v7 --output-dir papers
An existing HTML snapshot is reused, while Markdown is regenerated atomically on each invocation. A relative <versioned-id>.md symlink at the mirror root points to the generated Markdown, so -o refs/paper creates refs/paper/1706.03762v7.md. Relative image paths remain valid through companion resource symlinks such as refs/paper/1706.03762v7. Existing regular files and directories at link paths are never overwritten.
index.jsonl contains one JSON object per versioned paper ID. Records are sorted by ID and replaced, rather than duplicated, when a paper is regenerated. The index is written atomically after successful conversion:
{"id": "1207.0580v1", "title": "Improving neural networks by preventing co-adaptation of feature detectors", "source": "https://ar5iv.labs.arxiv.org/html/1207.0580v1", "html": "ar5iv.labs.arxiv.org/html/1207.0580v1.html", "markdown": "ar5iv.labs.arxiv.org/html/1207.0580v1.md", "warnings": [{"code": "unresolved_citation_placeholders", "count": 24}]}
The html and markdown paths are relative to the mirror root. The source field records whether the HTML came from arXiv or ar5iv. warnings is empty for a clean conversion.
After conversion, ar2md checks for unresolved citation placeholders, unresolved internal links, nested display-math delimiters, and missing local images. Findings are printed to stderr and stored as structured warning counts in the index. The tool does not fabricate content that is already missing from the source HTML.
ar5iv fallback
The downloader first requests https://arxiv.org/html/<versioned-id>. An HTTP 404 triggers a request to https://ar5iv.labs.arxiv.org/html/<versioned-id>; network failures and other HTTP errors do not silently switch sources. For example:
ar2md 1503.02531v1
The resulting HTML and Markdown are stored under ar2md/ar5iv.labs.arxiv.org/, making the alternate provenance explicit. A cached fallback snapshot is reused on later runs. ar5iv is a LaTeXML conversion service rather than an arXiv archival endpoint, so retain the downloaded snapshot when exact reproducibility matters.
Local development
uvx --from . ar2md 1706.03762v7
uv tool install .
Conversion
The bundled Lua filter keeps the paper body while removing arXiv UI, preserves TeX math and figures, uses figure captions as descriptive image alt text, reconstructs algorithm code blocks, normalizes footnotes and equation blocks, and rewrites internal citations to valid local anchors.
Publishing
Build and validate the distributions locally:
uv lock --check
uv run python -m unittest discover -s tests -v
uv build
uvx twine check dist/*
Publishing uses PyPI Trusted Publishing. In the PyPI project or pending-publisher settings, configure:
- PyPI project:
ar2md - GitHub owner:
cs-giung - GitHub repository:
ar2md - workflow:
publish.yml - environment:
pypi
Then create a GitHub release from a tag matching v<project.version>, such as v0.1.0. The release workflow checks the tag against pyproject.toml, runs the test suite, validates both distributions, and publishes without a long-lived API token.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ar2md-0.1.1.tar.gz.
File metadata
- Download URL: ar2md-0.1.1.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07160efa0315fc00380a436984cc7a1804b9d91fe748efc87b32fead0b7cbfac
|
|
| MD5 |
ddaea5ddb850302941a4e118aaec493d
|
|
| BLAKE2b-256 |
ea9743a116c3cb029c560db3e227799143fc2b88a714ba72d41b85a5e740a8c2
|
Provenance
The following attestation bundles were made for ar2md-0.1.1.tar.gz:
Publisher:
publish.yml on cs-giung/ar2md
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ar2md-0.1.1.tar.gz -
Subject digest:
07160efa0315fc00380a436984cc7a1804b9d91fe748efc87b32fead0b7cbfac - Sigstore transparency entry: 2256935456
- Sigstore integration time:
-
Permalink:
cs-giung/ar2md@d08e0fd928e5ca2243dbf0c8842cfb7837243149 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/cs-giung
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d08e0fd928e5ca2243dbf0c8842cfb7837243149 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ar2md-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ar2md-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58bba3ab963ac12dc485bac00c7bcde8d61f42811150a88446f0d0477142ac56
|
|
| MD5 |
667bb88d8994da824580d4ae23817931
|
|
| BLAKE2b-256 |
8d9e6cd9a53a7c55127b42da16252cbdcc83d871d1d0ec550e0d521bcfddbe7c
|
Provenance
The following attestation bundles were made for ar2md-0.1.1-py3-none-any.whl:
Publisher:
publish.yml on cs-giung/ar2md
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ar2md-0.1.1-py3-none-any.whl -
Subject digest:
58bba3ab963ac12dc485bac00c7bcde8d61f42811150a88446f0d0477142ac56 - Sigstore transparency entry: 2256935464
- Sigstore integration time:
-
Permalink:
cs-giung/ar2md@d08e0fd928e5ca2243dbf0c8842cfb7837243149 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/cs-giung
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d08e0fd928e5ca2243dbf0c8842cfb7837243149 -
Trigger Event:
release
-
Statement type: