webmark 0.1.0

WebMark - Downloads the contents, texts and images, of a single web address and stores as a markdown file.
Documentation
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Build",
            "type": "shell",
            "command": "cargo build",
            "group": {
				"kind": "build",
				"isDefault": true
			}
        },
        {
            "label": "Test",
            "type": "shell",
            "command": "cargo run",
            "group": {
				"kind": "test",
				"isDefault": true
			}
        }
    ]
}