Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markjamesm/bookmark-tester
Broken link checker for browser bookmarks written in Swift. Visit the link below for the accompanying guide I wrote.
https://github.com/markjamesm/bookmark-tester
bookmark-tester broken-link-finder swift
Last synced: about 1 month ago
JSON representation
Broken link checker for browser bookmarks written in Swift. Visit the link below for the accompanying guide I wrote.
- Host: GitHub
- URL: https://github.com/markjamesm/bookmark-tester
- Owner: markjamesm
- Created: 2020-04-19T07:11:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-10T14:30:01.000Z (over 4 years ago)
- Last Synced: 2024-08-05T10:20:56.652Z (5 months ago)
- Topics: bookmark-tester, broken-link-finder, swift
- Language: HTML
- Homepage: https://markjames.dev/2020-04-20-bookmark-dead-link-checker-swift/
- Size: 10.7 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bookmark Tester
[![Swift](https://img.shields.io/badge/Swift-5.1-orange.svg)](https://swift.org)
[![License](https://img.shields.io/badge/License-GPL-red.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)Bookmark tester is a broken link checker designed to read HTML bookmark files from Chrome, Firefox, Chromium, and other browsers with an export to HTML feature. Part of a [guide I wrote here](https://markjames.dev/2020-04-20-bookmark-dead-link-checker-swift/).
## Features
* Parses bookmarks in HTML format
* Checks and records the response code for each bookmark## Usage
In order to use the Bookmark tester, first export your browser bookmarks to HTML, and then copy the HTML code into the bookmarkHTML variable inside BrowserBookmarks.swift. An example bookmarks HTML file for testing purposes is [included here](https://github.com/markjamesm/bookmark-tester/blob/master/samplebookmarks.html).
## Libraries
* [SwiftSoup](https://github.com/scinfu/SwiftSoup), an HTML parsing library for Swift.