Instead of uploading a file, you can point Doc Reviewer at a live URL. The app fetches the page using a headless Chromium browser, extracts instruction sections from the HTML, and treats the result as a regular document ready for evaluation. You can add multiple pages to the same document before running the evaluation.Documentation Index
Fetch the complete documentation index at: https://www.doc-reviewer.site/llms.txt
Use this file to discover all available pages before exploring further.
Load a web page
Open the Evaluation page
Click Evaluation in the sidebar, or navigate to any project and click Evaluate by URL.
Select the By URL tab
At the top of the Evaluation page, click the By URL tab to switch from file upload to URL mode.
Paste a URL and click Load
Paste the full URL of the page you want to evaluate (must start with
http:// or https://) and click Load. Doc Reviewer launches Chromium in headless mode and fetches the page.Wait for the page to load
Chromium renders the page fully before extraction begins, so JavaScript-rendered content and single-page applications (SPAs) load correctly. Fetching typically takes a few seconds. A loading indicator is shown while Chromium is running.
Add more pages (optional)
After the first page loads successfully, a + Add page button appears in the document header. Click it, paste another URL, and click Load to append that page’s instructions to the same document. Repeat for each additional page you want to include.
All pages you add become part of a single document. Each instruction block extracted from each page appears as a separate section in the document tree and is evaluated individually.
How web parsing works
Doc Reviewer uses two parsing strategies depending on the source site:- Positive Technologies web help
- Other websites
When the page contains custom
<instruction>, <action>, or <task> tags — the structure used in Positive Technologies web help — Doc Reviewer uses a specialized parser that:- Treats each
<instruction>block as a separate document section - Correctly numbers steps inside
<action>tags - Strips layout artifacts such as soft-hyphen characters (
­)
Because Chromium renders JavaScript before extraction, the app supports JS-rendered pages and SPAs. Static HTML pages load faster, but both work correctly.