Results 9 comments of Kartik Prabhu

@sknebel the BS4 tree is already exposed for advanced users through the `Parser.__doc__ ` property. You can also give a BS4 tree directly as the `doc` argument to parse; i.e....

There are no current rules for backcompat parsing of hListing http://microformats.org/wiki/hListing and h-listing http://microformats.org/wiki/h-listing does not seem to be used much.

looks good to me. Might want to add some tests for this so that we can track any future changes to the code base.

works on https://mf2py.herokuapp.com/parse?url=http%3A%2F%2Ftantek.com and not on https://mf2py.herokuapp.com/parse?url=https%3A%2F%2Faaronparecki.com so might be a https/SNI issue Using python2.7 needs some special handling iirc. parituclarly installing pyOpenSSL stuff

Neither http://microformats.org/wiki/h-entry#Backward_Compatibility nor http://microformats.org/wiki/rel-shortlink defines any backcompat parsing for rel-shortlink

here is a full example ``` html Jane Doe ``` is parsed as two h-cards. The first one is correct with the relative URL resolved ```json { "properties": { "name":...

@tantek I have not found a good way of copying text to clipboard using vanilla JS. If you know a good documented way I would update the code. Note: the...

@tantek thanks for the links. I will look into it. My current thoughts are: * if the Clipboard API is supported then the button should copy the link to clipboard...

Looks like the Clipboard API has not been implemented yet in FF. Also: https://developer.mozilla.org/en-US/docs/Web/API/Clipboard/writeText#Browser_compatibility Will look into hacking around with `execCommand("copy")` for now and then switch over later.