Microformat.net

I would like to take this opportunity to announce that I have created a usable [although beta] release of a generic Microformat parser for .Net.  I don't know of any other frameworks that easily allow you to find Microformats in an html/XML stream that are specifically built for .Net, so I believe that this project is a first (and hopefully a de-facto choice in time to come).

The project can be found on Codeplex at [http://www.codeplex.com/microformat](http://www.codeplex.com/microformat).  The current release is Iteration 3.

The parser is stream based and uses an application configuration (see below for an example) to define the how the parser should parse the html/XML stream.  This flexible configuration means that if a spec changes for a Microformat or a new one is introduced then no code needs to be changed in the framework to let users of the framework see the changed data.

<configuration>  <configSections>    <section name='MicroformatsSection' type='Microformats.ConfigurationSections.MicroformatConfigSection, Microformat.net'/>  </configSections>  <MicroformatsSection>    <Microformats>      <Microformat type='rel-tag' rootType='rel' root='tag' dataType='System.Uri' />      <Microformat type='hCard' rootType='class' root='vcard' dataType='System.String'>        <Fields>          <Field name='fn' dataType='System.String' plurality='Singular'/>          <Field name='url' dataType='System.Uri' plurality='Singular'/>          <Field name='email' dataType='System.Uri' plurality='Singular'/>          <Field name='adr' dataType='Microformat' plurality='Singular'/>        </Fields>      </Microformat>      <Microformat type='adr' rootType='class' root='adr' dataType='System.String'>        <Fields>          <Field name='post-office-box' dataType='System.String' plurality='Singular'/>          <Field name='extended-address' dataType='System.String' plurality='Singular'/>          <Field name='street-address' dataType='System.String' plurality='Singular'/>          <Field name='locality' dataType='System.String' plurality='Singular'/>          <Field name='region' dataType='System.String' plurality='Singular'/>          <Field name='postal-code' dataType='System.String' plurality='Singular'/>          <Field name='country-name' dataType='System.String' plurality='Singular'/>        </Fields>      </Microformat>    </Microformats>  </MicroformatsSection>

The above configuration says that the following Microformats are to be searched for: rel-tag, hCard and adr.  Each Microformat configuration can also be nested (see the hCard spec that allows an adr to be nested inside itself).  This saves on duplicating configuration information.  (Unfortunately a circular reference in the configuration can be defined and plurality of elements is not implemented.  This will be fixed soon).  Currently in this configuration not all of the hCard spec is defined (this was done for simplicity of me showing you how the config works), obviously this means that any parts of a Microformat that you are not interested in you won't see in the output of the framework.

The code that follows shows how easy it is to use this framework:

using (TextReader ms = new StringReader(@'<html><body><div class=''vcard author''> Paul Kinlan paul.kinlan@gmail.com <div class=''adr''>  <span class=''locality''>Liverpool</span>,<span class=''region''>Merseyside</span> </div></div></div>Test Tag</body></html>'))            {                using (Microformats.Readers.MicroformatReader mr = new Microformats.Readers.MicroformatReader(ms))                {                    Microformat m = null;                    while(( m = mr.Read()) != null)                    {                        Console.Out.Write('Found Microformat: ' + m.Name + '. Machine Value:' + m.MachineValue + '\n');                        foreach (IField f in m.Fields)                        {                            Console.Out.WriteLine('\t' + f.Name + ': ' + f.MachineValue);                        }                    }                                    }            }

The first line, simply converts makes a TextReader object that can be used to pass into the MicroformatReader object.  Once the stream has been presented to the framework, then it is as simple as calling mr.Read to iterate to across all the valid Microformats in the document.  The Read() method returns fully constructed Microformat objects that can be examined and used directly in your programs.

I still have a lot of work to do, however it appears (to me at least) to be quite flexible.  I would greatly appreciate any comments and feedback and if you use the framework I would love to hear about it.  If anyone is interested in joining the project let me know.

Topicala Tags: [[OPML](http://www.topicala.com/opml/c#.opml)], [[OPML](http://www.topicala.com/opml/microformat.opml)], [[OPML](http://www.topicala.com/opml/microformats.opml)], [[OPML](http://www.topicala.com/opml/.net.opml)], [[OPML](http://www.topicala.com/opml/framework.opml)], [[OPML](http://www.topicala.com/opml/api.opml)], [[OPML](http://www.topicala.com/opml/codeplex.opml)]

I lead the Chrome Developer Relations team at Google.

We want people to have the best experience possible on the web without having to install a native app or produce content in a walled garden.

Our team tries to make it easier for developers to build on the web by supporting every Chrome release, creating great content to support developers on web.dev, contributing to MDN, helping to improve browser compatibility, and some of the best developer tools like Lighthouse, Workbox, Squoosh to name just a few.

I love to learn about what you are building, and how I can help with Chrome or Web development in general, so if you want to chat with me directly, please feel free to book a consultation.

I'm trialing a newsletter, you can subscribe below (thank you!)