glennjones / microformat-shiv

A light weight cross browser JavaScript microformats parser
http://microformatshiv.com
MIT License
136 stars 22 forks source link

build status Coverage Status Codacy Badge MIT license

microformat-shiv

A cross browser JavaScript microformats parser, which can also be used to build browser extensions. This is library is built into the Firefox browser as an internal component

Installation

Using Bower:

$ bower install microformat-shiv

Methods

get

Simple parse of a HTML document or a selected part of a HTML document.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items;

        items = Microformats.get()
        // do something with data `items`
    </script>

Using options

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items,
            options;

        options = {'filters': ['h-card']};
        var items = Microformats.get( options )
        // do something with data `items`
    </script>

Targeting just part of a HTML document

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items,
            options;

        options = {
            'filters': ['h-card'],
            'node': document.getElementById('target')
        };
        var items = Microformats.get( options )
        // do something with data `items`
    </script>

Parsing a HTML string

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items,
            options;

        options = {
            'baseUrl': 'http://glennjones.net',
            'html': '<a class="h-card" href="https://github.com/glennjones/microformat-shiv/blob/master/about.html">Glenn</a>'
        };
        var items = Microformats.get( options )
        // do something with data `items`
    </script>

Note: The baseUrl is optional and is used to resolve relative URLs

Options

I would recommend always setting the textFormat option to normalised. This is not part of the microformat parsing rules, but in most cases provides more usable output.

Experimental options

These options are part of ongoing specification development. They maybe removed or renamed in the future.

Output

JSON output. This is an example of a parsed h-card microformat.

    {
        "items": [{
            "type": ["h-card"],
             "properties": {
                "url": ["http://blog.lizardwrangler.com/"],
                "name": ["Mitchell Baker"],
                "org": ["Mozilla Foundation"],
                "note": ["Mitchell is responsible for setting the direction Mozilla ..."],
                "category": ["Strategy", "Leadership"]
             }
        }],
        "rels": {},
        "rel-urls": {}
    }

JSON output with error.

    {
        "items":[],
        "rels": {},
        "rel-urls": {}
        "errors":["No options.node was provided and no global document object could be found."]
    }

getParent

Given an HTML DOM node it will return its first parent microformat.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items,
            node = document.getElementById('target');

        items = Microformats.getParent( node )
        // do something with data `items`
    </script>

The getParent method takes the same options as the get method. The one difference is how the options.filters property affects the output. Adding a filter list to getParent will allow the search for a parent to pass through microformats you do not want to target.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var items,
            options = {'filters': ['h-entry']},
            node = document.getElementById('target');

        items = Microformats.getParent( node, options )
        // do something with data `items`
    </script>

Count

The count method returns the number of each microformat type found. It does not do a full parse so it is much quicker than get and can be used for tasks such as adding notifications to the UI. The method can take an options object as a parameter.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var counts = Microformats.count()
        // do something with counts data
    </script>

Output

    {
        'h-event': 1,
        'h-card': 2,
        'rels': 6
    }

isMicroformat

The isMicroformat method returns whether a node has a valid microformats class. It currently does not consider rel=* a microformat. The method can take an options object as a second parameter.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var node = document.getElementById('target');
        var isVaild = Microformats.isMicroformat( node );
        // do something with isVaild boolean
    </script>

hasMicroformats

The hasMicroformats method returns whether a document or node has any valid microformats class. It currently does not take rel=* microformats into account. The method can take an options object as a second parameter.

    <script src="https://github.com/glennjones/microformat-shiv/raw/master/microformat-shiv.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        var isVaild,
            node = document.getElementById('target');

        isVaild = Microformats.isMicroformat( node );
        // do something with isVaild boolean
    </script>

Version and livingStandard

The library has two properties to help identify how up-to-date it is:

Browser support

Desktop

Mobile

Note some earlier browsers will need the ES5-shim.js file.

Microformats definitions object

The library has all the version 1 definitions built-in, but you can add new definitions using options.add if you wish. Below is an example of a definitions object. More can be found in the directory lib/maps. You do not need to add new definition objects if you are using microformats version 2.

    {
        root: 'hpayment',
        name: 'h-payment',
        properties: {
            'amount': {},
            'currency': {}
        }
    }

Standard vs Modern

The library code comes in two versions microformats-shiv.js and microformat-shiv-modern.js. The modern version used by Mozilla in Firefox does not include the polyfills for DOMParser. This version of the library can only be used with modern browser which support these features.

License

MIT © Glenn Jones