ocaml / omd

extensible Markdown library and tool in "pure OCaml"
ISC License
156 stars 45 forks source link

parser silently stops early #103

Closed mor1 closed 10 years ago

mor1 commented 10 years ago

no error i can see. don't know what changed. am using HEAD.

: mort@greyjay:mort-www#master *%= $; omd -version
This is version VERSION.

running on eg., https://raw2.github.com/mor1/mort-www/master/store/pages/research.md gives

: mort@greyjay:mort-www#master *%= $; omd store/pages/research.md
<div data-magellan-expedition="fixed">
  <dl class="sub-nav">
    <dd data-magellan-arrival="Research"><a href="#Research">top</a></dd>
    <dd data-magellan-arrival="Students"><a href="#Students">students</a></dd>
    <dd data-magellan-arrival="Publications"><a href="#Publications">publications</a></dd>
  </dl>
</div>
<h1 class="clearfix" data-magellan-destination="Research" id="Research">Research</h1>
<p>I am interested in computing infrastructures, specifically networked systems. In the past I have done extensive work on topics including <a href='/papers/pdf/imw02-linkfailures.pdf'>routing behaviour in backbone networks</a>, <a href='/papers/pdf/fdna03-plutarch.pdf'>future network architectures</a>, <a href='/papers/pdf/osdi04-magpie.pdf'>performance analysis and modelling of distributed systems</a>, <a href='/papers/pdf/usenix06-anemone.pdf'>enterprise network management</a>, and <a href='/papers/pdf/ton10-wsd.pdf'>analysis of network topologies</a>. Most recently I have become interested in interdisciplinary research and particularly the interplay between networked systems and topics that traditionally fall under human-computer interaction. For example,</p>
<ul>
 <li>how can we build usable <em><a href='http://homenetworks.ac.uk/'>home networking infrastructure</a></em>?</li>
 <li>how can we increase legibility of current and future information infrastructures, supporting <em><a href='http://hdiresearch.org/'>human-data interaction</a></em>?</li>
 <li>how can we rebuild infrastructures to support users deploying <em><a href='http://openmirage.org/'>personal clouds</a></em>?</li>
 <li>how can we build systems that are <em>ethical by design</em>?</li>
</ul>

<p>I try to maintain <a href='#Publications'>a complete list of my publications</a> in addition to the usual sites including <a href='http://scholar.google.co.uk/citations?user=9LJgRFAAAAAJ&amp;hl=en'>Google Scholar</a>, <a href='http://academic.research.microsoft.com/Author/317246/richard-mortier'>Microsoft Academic</a>, <a href='http://www.citeulike.org/search/all?q=author%3A%22richard+mortier%22+author%3A%22r+mortier%22'>CiteULike</a> and the <a href='http://dl.acm.org/author_page.cfm?id=81313480954'>ACM DL</a>.</p>
<h2 data-magellan-destination="Students" id="Students">Students</h2>
<p>If you are interested in applying to undertake a Ph.D. with me, before I can consider your request I will need to see the following:</p>
<ul>
 <li>Your CV and research proposal -- I need to know what you want to do before we can discuss whether I&#39;d be an appropriate choice of supervisor!</li>
 <li>An indication of how you expect to be funded -- unfortunately nothing is free, including Ph.D. study. Any funded places that I have will be advertised via the <a href='http://www.nottingham.ac.uk/jobs/home.aspx'>University&#39;s vacancy system</a>. Please read any adverts there carefully -- funding eligibility requirements often mean that studentships are only accessible by UK/EU students.</li>
</ul>

<h3 id="Current">Current</h3>
<p>I am fortunate to have worked, and to continue to work, with some excellent Ph.D. students on a wide range of topics.</p><div class="no-bullet"><ul>
 <li><strong>Sultan Alanazi</strong> (2012), co-supervised with <a href='http://www.cs.nott.ac.uk/~drm/'>Prof. Derek McAuley</a>.<br/>
 Recommendation systems using rich personal data.</li>
 <li><strong>Anthony Brown</strong> (2010), co-supervised with <a href='http://www.cs.nott.ac.uk/~tar/'>Prof. Tom Rodden</a>.<br/>
 Securing the domestic network.</li>
 <li><strong>Liz Dowthwaite</strong> (2012), co-supervised with <a href='http://www.nottingham.ac.uk/engineering/people/robert.houghton'>Dr Robert Houghton</a>.<br/>
 Social networks and web comic artists.</li>
 <li><strong>Christina-Dialechti Emmanouil</strong> (2014), co-supervised with <a href='http://www.cs.nott.ac.uk/~drm/'>Prof. Derek McAuley</a> and <a href='http://www.strath.ac.uk/humanities/courses/law/staff/edwardslilianprof/'>Prof. Lilian Edwards</a>.<br/>
 IT law and copyright.</li>
 <li><strong>Marjan Falahrastegar</strong> (2012) at Queen Mary, University of London, co-supervised with <a href='http://www.eecs.qmul.ac.uk/~steve/'>Prof. Steve Uhlig</a> and <a href='http://www.eecs.qmul.ac.uk/~hamed/'>Dr Hamed Haddadi</a>.<br/>
 Personal data in home hubs.</li>
 <li><strong>Ewa Luger</strong> (2009), co-supervised with <a href='http://www.cs.nott.ac.uk/~tar/'>Prof. Tom Rodden</a>.<br/>
 Understanding consent in ubiquitous computing.</li>
 <li><strong>Steven Luland</strong> (2013), co-supervised with <a href='http://www.cs.nott.ac.uk/~drm/'>Prof. Derek McAuley</a>.  </li>
 <li><strong>Dominic Price</strong> (2013), co-supervised with <a href='http://www.cs.nott.ac.uk/~cmg/'>Prof. Chris Greenhalgh</a>.<br/>
 User-focused social network platforms.</li>
 <li><strong>Jianhua Shao</strong> (2010), co-supervised with <a href='http://www.nottingham.ac.uk/business/LIZGK.html'>Dr George Kuk</a>.<br/>
 Investigating markets in personal data.</li>
 <li><strong>Robert Spencer</strong> (2011), co-supervised with <a href='http://www.cs.nott.ac.uk/~tar/'>Prof. Tom Rodden</a>.<br/>
 History and reconciliation in domestic network configuration.</li>
</ul>
</div>

...ie., it stopped parsing just before the last heading ( ### Masters & Undergraduate Projects). any ideas why?

pw374 commented 10 years ago

Thanks for reporting this.

Apparently the bug was introduced between 0.9.3 and 0.9.4. I'm investigating...

pw374 commented 10 years ago

I've introduced the bug in 84fe8f301ce7b255bbdef04df3208fcfac7c5d0c I don't know yet what's wrong with it, but it should be fixed soon.

pw374 commented 10 years ago

It was a bad copy-pasting! :-( Fixed by 92554855bd44057007030ec732854c708c32baf5

Thanks again @mor1!

mor1 commented 10 years ago

thanks, that fixes it