| {
    "options": {
        "attr": {
            "class": "foo"
        }
    },
    "tests": [
        {
            "test": "www.example.com",
            "expected": "<a href=\"http://www.example.com\" class=\"foo\">www.example.com</a>"
        },
        {
            "test": "www.example.com",
            "options": {
                "attr": {
                    "class": "bar"
                }
            },
            "expected": "<a href=\"http://www.example.com\" class=\"bar\">www.example.com</a>"
        },
        {
            "test": "www.example.com",
            "options": {
                "attr": {
                    "rel": "nofollow"
                },
                "ignore": [
                    "baz"
                ]
            },
            "expected": "<a href=\"http://www.example.com\" class=\"foo\" rel=\"nofollow\">www.example.com</a>"
        }
    ]
}
 |