• Stars
    star
    136
  • Rank 266,272 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 14 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A light weight cross browser JavaScript microformats parser

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="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="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="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="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="/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

  • html - (String) the HTML to be parsed (only get and count methods);
  • node - (DOM element) the element to be parsed - the default is the current browser document
  • baseUrl - (String) optional URL used to resolve relative URLs
  • filter - (Array) microformat types returned - i.e. ['h-card'] - always adds rels
  • textFormat - (String) text style whitespacetrimmed or normalised default is whitespacetrimmed
  • dateFormat - (String) the ISO date profile auto, microformat2, w3c rfc3339 or html5 default is auto
  • add - (Array) adds microformat version 1 definitions

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.

  • lang (Boolean) Parses and adds the language value to e-* default is false
  • parseLatLonGeo (Boolean) Parse geo date written as latlon i.e. 30.267991;-97.739568 default is false

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="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="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="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="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="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

  • Firefox 45-11
  • Chrome 48-14
  • Opera 30-19 (Version 18 > passes 84% of tests)
  • Safari 9-6 (Version 5 passes 97% of tests)
  • IE 11-9
  • Edge

Mobile

  • iOS 9-5.1 (Version 4 passes 97% of tests)
  • Andriod 5-4 (The only versions I could test)
  • Android Firefox 39 (The only versions I could test)
  • Android Chrome 43 (The only versions I could test)

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

More Repositories

1

microformat-node

Microformats parser for node.js
JavaScript
116
star
2

be-more-hapi

A example site using HAPI - Built for Asyncjs talk
JavaScript
85
star
3

webmentions

An API of helper function for providing and consuming webmentions
JavaScript
43
star
4

Draggables

A javascript library that allows users to exchange data between web sites using drag and drop
32
star
5

hapi-token-docs

A example site using HAPI, JWT tokens and swagger documentation
JavaScript
26
star
6

time-to-be-hapi

Time to be HAPI - london.js talk
HTML
23
star
7

elsewhere-profiles

Social media profile aggregator for node.js
JavaScript
23
star
8

UfXtract

UfXtract is a .Net microformats parser
C#
21
star
9

elsewhere-mapper

Social media profile endpoint mapper for node.js
JavaScript
17
star
10

mani

Pure javascript search - browser and node.js
JavaScript
12
star
11

note-editor

A note editor for indie blogging platforms
CSS
11
star
12

kinect-drone

Control an AR-Drone by waving your hands. Links a Kinect through node.js to a drone
JavaScript
9
star
13

text-autolinker

An tool for adding HTML links and tags to plain text
JavaScript
8
star
14

hapi-workshop

Async Special - Hapi.js Workshop
JavaScript
6
star
15

extending-the-offline-web

Extending the offline web experience - asyncjs talk
JavaScript
5
star
16

sw-toolbox-example

Basic sw-toolbox example with HAPI backend, to be used as template
JavaScript
4
star
17

nunjucks-extras

A set of tag extensions and filters for nunjucks templating lib
JavaScript
2
star
18

url-tools

A very simple node.js module for comparing URLs
JavaScript
2
star
19

node-introduction

A small introduction talk for node.js
JavaScript
2
star
20

edinburghjs-text-wrangling

2
star
21

waypointer

A HAPI plug-in that provides a template framework for OpenAPI (aka swagger)
2
star
22

swagger-har

A module that converts OpenAPI (aka Swagger) schema objects into an array HAR request objects.
JavaScript
2
star
23

microformats-testrunner

A microformat 2 test runner
HTML
2
star
24

hapi-waypointer

A HAPI plug-in that provides modern auto documentation of APIs using Waypointer themes
JavaScript
2
star
25

prompt

JavaScript
1
star
26

hapi-bootstrap

A basic hapi.js bootstrap to build projects from
JavaScript
1
star
27

hapi-microformats

A HAPI wrap of microformat-node project
JavaScript
1
star
28

node-express-template

This is an example project built with node and express
JavaScript
1
star
29

html-to-markdown

Turns HTML into Markdown
JavaScript
1
star