Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mf

mfDotnet is a library for scanning html documents and extracting Microformat2 documents.

Usage

mfDotnet can be used to parse html strings:

string html = @"<article class=\"h-entry\"><h1 class=\"p-name\">Hello</h1></article>";
Parser p = new Parser();
Uri uri = new Uri("https://example.org");
var doc = p.Parse(html, uri);

Or loaded from a web page:

Parser p = new Parser();
Uri uri = new Uri("https://microformats.org");
var doc = p.Parse(uri);

TODO

  • Backcompatible formats
  • Loading from url

About

A dotnet library for extracing microformats from html

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages