| 1 | <div> |
| 2 | <div class="flex-container flexFlowColumn"> |
| 3 | <label for="scrapeInput" data-i18n="Enter a base URL of the MediaWiki to scrape."> |
| 4 | Enter a <strong>base URL</strong> of the MediaWiki to scrape. |
| 5 | </label> |
| 6 | <i data-i18n="Don't include the page name!"> |
| 7 | Don't include the page name! |
| 8 | </i> |
| 9 | <small> |
| 10 | <span data-i18n="Examples:">Examples:</span> |
| 11 | <code>https://streetcat.wiki/index.php</code> |
| 12 | <span data-i18n="or">or</span> |
| 13 | <code>https://tcrf.net</code> |
| 14 | </small> |
| 15 | <input type="text" id="scrapeInput" name="scrapeInput" class="text_pole" placeholder=""> |
| 16 | </div> |
| 17 | <div class="flex-container flexFlowColumn"> |
| 18 | <label for="scrapeFilter"> |
| 19 | Optional regex to pick the content by its title: |
| 20 | </label> |
| 21 | <small> |
| 22 | <span data-i18n="Example:">Example:</span> |
| 23 | <code>/Mr. (Fresh|Snack)/gi</code> |
| 24 | </small> |
| 25 | <input type="text" id="scrapeFilter" name="scrapeFilter" class="text_pole" placeholder=""> |
| 26 | </div> |
| 27 | <div class="flex-container flexFlowColumn"> |
| 28 | <label> |
| 29 | Output format: |
| 30 | </label> |
| 31 | <label class="checkbox_label justifyLeft" for="scrapeOutputSingle"> |
| 32 | <input id="scrapeOutputSingle" type="radio" name="scrapeOutput" value="single" checked> |
| 33 | <div class="flex-container flexFlowColumn flexNoGap"> |
| 34 | <span data-i18n="Single file"> |
| 35 | Single file |
| 36 | </span> |
| 37 | <small data-i18n="All articles will be concatenated into a single file."> |
| 38 | All articles will be concatenated into a single file. |
| 39 | </small> |
| 40 | </div> |
| 41 | </label> |
| 42 | <label class="checkbox_label justifyLeft" for="scrapeOutputMulti"> |
| 43 | <input id="scrapeOutputMulti" type="radio" name="scrapeOutput" value="multi"> |
| 44 | <div class="flex-container flexFlowColumn flexNoGap"> |
| 45 | <span data-i18n="File per article"> |
| 46 | File per article |
| 47 | </span> |
| 48 | <small data-i18n="Each article will be saved as a separate file."> |
| 49 | Not recommended. Each article will be saved as a separate file. |
| 50 | </small> |
| 51 | </div> |
| 52 | </label> |
| 53 | </div> |
| 54 | </div> |