{"id":2151,"date":"2014-08-29T14:10:28","date_gmt":"2014-08-29T18:10:28","guid":{"rendered":"http:\/\/blogs.law.harvard.edu\/pamphlet\/?p=2151"},"modified":"2014-09-22T17:40:20","modified_gmt":"2014-09-22T21:40:20","slug":"switching-to-markdown-for-scholarly-article-production","status":"publish","type":"post","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2014\/08\/29\/switching-to-markdown-for-scholarly-article-production\/","title":{"rendered":"Switching to Markdown for scholarly article production"},"content":{"rendered":"\n<p>With few exceptions, scholars would be better off writing their papers in a lightweight markup format called <a href=\"http:\/\/daringfireball.net\/projects\/markdown\/\">Markdown<\/a>, rather than using a word-processing program like Microsoft Word. This post explains why, and reveals a hidden agenda as well.<sup><a id=\"fnref1\" class=\"footnoteRef\" href=\"#fn1\">1<\/a><\/sup><\/p>\n<h3 id=\"microsoft-word-is-not-appropriate-for-scholarly-article-production\">Microsoft Word is not appropriate for scholarly article production<\/h3>\n<table style=\"margin-left: 20px\" width=\"200\" align=\"right\" bgcolor=\"#F7EFE5\">\n<tbody>\n<tr>\n<td align=\"center\"><a title=\"Old two pan balance\" href=\"http:\/\/blogs.law.harvard.edu\/pamphlet\/files\/2014\/08\/789px-Balance_scale_IMGP9728.jpg\"><img decoding=\"async\" src=\"http:\/\/blogs.law.harvard.edu\/pamphlet\/files\/2014\/08\/789px-Balance_scale_IMGP9728.jpg\" alt=\"Old two pan balance\" width=\"200\" \/><\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center\"><span style=\"color: #999999\">\u2026lightweight\u2026<\/span><br \/>\n<span style=\"color: #999999;font-size: 85%\">\u201c<a href=\"http:\/\/xkcd.com\/329\/\">Old two pan balance<\/a>\u201d image from <a href=\"http:\/\/commons.wikimedia.org\/wiki\/User:Nikodem_Nijaki\">Nikodem Nijaki<\/a> at <a href=\"http:\/\/commons.wikimedia.org\/wiki\/File:Balance_scale_IMGP9728.jpg\">Wikimedia Commons<\/a>. Used <a href=\"http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/deed.en\">by permission<\/a>.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Before turning to lightweight markup, I review the problems with Microsoft Word as the lingua franca for producing scholarly articles. This ground has been heavily covered. (<a href=\"http:\/\/www.antipope.org\/charlie\/blog-static\/2013\/10\/why-microsoft-word-must-die.html\">Here\u2019s<\/a> a recent example.) The problems include:<\/p>\n<dl>\n<dt>Substantial learning curve<\/dt>\n<dd>Microsoft Word is a complicated program that is difficult to use well.<\/dd>\n<dt>Appearance versus structure<\/dt>\n<dd>Word-processing programs like Word <a href=\"http:\/\/ricardo.ecn.wfu.edu\/~cottrell\/wp.html\">conflate composition with typesetting<\/a>. They work by having you specify how a document should look, not how it is structured. A classic example is section headings. In a typical markup language, you specify that something is a heading by marking it as a heading. In a word-processing program you might specify that something is a heading by increasing the font size and making it bold. Yes, Word has \u201cparagraph styles\u201d, and some people sometimes use them more or less properly, if you can figure out how. But most people don\u2019t, or don\u2019t do so consistently, and the resultant chaos has been well documented. It has led to a whole industry of people who specialize in massaging Word files into some semblance of consistency.<\/dd>\n<dt>Backwards compatibility<\/dt>\n<dd>Word-processing program file formats have a tendency to change. Word itself has gone through multiple incompatible file formats in the last decades, one every couple of years. Over time, you have to keep up with the latest version of the software to do anything at all with a new document, but updating your software may well mean that old documents are no longer identically rendered. With Markdown, no software is necessary to read documents. They are just plain text files with relatively intuitive markings, and the underlying file format (UTF-8 n\u00e9e ASCII) is backward compatible to 1963. Further, typesetting documents in Markdown to get the \u201cnice\u201d version is based on <a href=\"http:\/\/en.wikipedia.org\/wiki\/Free_and_open-source_software\">free and open-source software<\/a> (<a href=\"http:\/\/daringfireball.net\/projects\/markdown\/license\">markdown<\/a>, <a href=\"https:\/\/code.google.com\/p\/pandoc\/downloads\/list\">pandoc<\/a>) and built on other longstanding open source standards (<a href=\"http:\/\/latex-project.org\/lppl\/\">LaTeX<\/a>, BibTeX).<\/dd>\n<dt>Poor typesetting<\/dt>\n<dd>Microsoft Word does a generally poor job of typesetting, as exemplified by hyphenation, kerning, mathematical typesetting. This shouldn\u2019t be surprising, since the whole premise of a word-processing program means that the same interface must handle both the specification and typesetting in real-time, a recipe for having to make compromises.<\/dd>\n<dt>Lock-in<\/dt>\n<dd>Because Microsoft Word\u2019s file format is effectively proprietary, users are locked in to a single software provider for any and all functionality. The file formats are <a href=\"http:\/\/www.joelonsoftware.com\/items\/2008\/02\/19.html\">so complicated<\/a> that alternative implementations are effectively impossible.<\/dd>\n<\/dl>\n<h3 id=\"lightweight-markup-is-the-solution\">Lightweight markup is the solution<\/h3>\n<p>The solution is to use a markup format that allows <em>specification<\/em> of the document (providing its logical structure) separate from the <em>typesetting<\/em> of that document. Your document is specified \u2013 that is, generated and stored \u2013 as straight text. Any formatting issues are handled not by changing the formatting directly via a graphical user interface but by specifying the formatting textually using a specific textual notation. For instance, in the HTML markup language, a word or phrase that should be <em>emphasized<\/em> is textually indicated by surrounding it with &lt;em&gt;\u2026&lt;\/em&gt;. HTML and other powerful markup formats like LaTeX and various XML formats carry relatively large overheads. They are complex to learn and difficult to read. (Typing raw XML is nobody\u2019s idea of fun.) Ideally, we would want a markup format to be <em>lightweight<\/em>, that is, simple, portable, and human-readable even in its raw state.<\/p>\n<p>Markdown is just such a lightweight markup language. In Markdown, emphasis is textually indicated by surrounding the phrase with asterisks, as is familiar from <a href=\"http:\/\/www.ietf.org\/rfc\/rfc1855.txt\">email conventions<\/a>, for example, *lightweight*. See, that wasn\u2019t so hard. Here\u2019s another example: A bulleted list is indicated by prepending each item on a separate line with an asterisk, like this:<\/p>\n<pre><code> * First item\r\n * Second item<\/code><\/pre>\n<p>which specifies the list<\/p>\n<ul>\n<li>First item<\/li>\n<li>Second item<\/li>\n<\/ul>\n<p>Because specification and typesetting are separated, software is needed to convert from one to the other, to typeset the specified document. For reasons that will become clear later, I recommend the open-source software <a href=\"http:\/\/johnmacfarlane.net\/pandoc\/\">pandoc<\/a>. Generally, scholars will want to convert their documents to PDF (though pandoc can convert to a huge variety of other formats). To convert file.md (the Markdown-format specification file) to PDF, the command<\/p>\n<pre><code> pandoc file.md -o file.pdf<\/code><\/pre>\n<p>suffices. Alternatively, there are <a href=\"http:\/\/mashable.com\/2013\/06\/24\/markdown-tools\/\">many editing programs<\/a> that allow entering, editing, and typesetting Markdown. I sometimes use <a href=\"http:\/\/bywordapp.com\/\">Byword<\/a>. In fact, I\u2019m using it now.<\/p>\n<p>Markup languages range from the simple to the complex. I argue for Markdown for four reasons:<\/p>\n<ol>\n<li>Basic Markdown, sufficient for the vast majority of non-mathematical scholarly writing, is dead simple to learn and remember, because the markup notations were designed to mimic the kinds of textual conventions that people are used to \u2013 asterisks for emphasis and for indicating bulleted items, for instance. The coverage of this basic part of Markdown includes: emphasis, section structure, block quotes, bulleted and numbered lists, simple tables, and footnotes.<\/li>\n<li>Markdown is designed to be readable and the specified format understandable even in its plain text form, unlike heavier weight markup languages such as HTML.<\/li>\n<li>Markdown is well supported by a large ecology of software systems for entering, previewing, converting, typesetting, and collaboratively editing documents.<\/li>\n<li>Simple things are simple. More complicated things are more complicated, but not impossible. The extensions to Markdown provided by pandoc cover more or less the rest of what anyone might need for scholarly documents, including links, cross-references, figures, citations and bibliographies (via BibTeX), mathematical typesetting (via LaTeX), and much more.For instance, this equation (the <a href=\"http:\/\/en.wikipedia.org\/wiki\/Cauchy%E2%80%93Schwarz_inequality\">Cauchy-Schwarz inequality<\/a>) will typeset well in generated PDF files, and even in HTML pages using the wonderful <a href=\"http:\/\/www.mathjax.org\/\">MathJax<\/a> library.<span class=\"math\">\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]<\/span>(Pandoc also provides some extensions that simplify and extend the basic Markdown in quite nice ways, for instance, definition lists, strikeout text, a simpler notation for tables.)<\/li>\n<\/ol>\n<p>Above, I claimed that scholars should use Markdown \u201cwith few exceptions\u201d. The exceptions are:<\/p>\n<ol>\n<li>The document requires nontrivial mathematical typesetting. In that case, you\u2019re probably better off using LaTeX. Anyone writing a lot of mathematics has given up word processors long ago and ought to know LaTeX anyway. Still, I\u2019ll often do a first draft in Markdown with LaTeX for the math-y bits. Pandoc allows LaTeX to be included within a Markdown file (as I\u2019ve done above), and preserves the LaTeX markup when converting the Markdown to LaTeX. From there, it can be typeset with LaTeX. Microsoft Word would certainly not be appropriate for this case.<\/li>\n<li>The document requires typesetting with highly refined or specialized aspects. I\u2019d probably go with LaTeX here too, though desktop publishing software (InDesign) is also appropriate if there\u2019s little or no mathematical typesetting required. Microsoft Word would not be appropriate for this case either.<\/li>\n<\/ol>\n<p><a href=\"http:\/\/blogs.plos.org\/mfenner\/2012\/12\/13\/a-call-for-scholarly-markdown\/\">Some<\/a> have proposed that we need a special lightweight markup language for scholars. But Markdown is sufficiently close, and has such a strong community of support and software infrastructure, that it is more than sufficient for the time being. Further development would of course be helpful, so long as the urge to add \u201cfeatures\u201d doesn\u2019t overwhelm its core simplicity.<\/p>\n<h3 id=\"the-hidden-agenda\">The hidden agenda<\/h3>\n<p>I have a hidden agenda. Markdown is sufficient for the bulk of cases of composing scholarly articles, and simple enough to learn that academics might actually use it. Markdown documents are also typesettable according to a separate specification of document style, and retargetable to multiple output formats (PDF, HTML, etc.).<sup><a id=\"fnref2\" class=\"footnoteRef\" href=\"#fn2\">2<\/a><\/sup> Thus, Markdown could be used as the production file format for scholarly journals, which would eliminate the need for converting between the authors\u2019 manuscript version and the publishers internal format, with all the concomitant errors that process is prone to produce.<\/p>\n<p>In computer science, we have by now moved almost completely to a system in which authors provide articles in LaTeX so that no retyping or recomposition of the articles needs to be done for the publisher\u2019s typesetting system. Publishers just apply their LaTeX style files to our articles. The result has been a dramatic improvement in correctness and efficiency. (It is in part due to such an efficient production process that <a href=\"http:\/\/hvrd.me\/wOnMEq\">the cost of running a high-end computer science journal can be so astoundingly low<\/a>.)<\/p>\n<p>Even better, there is a new breed of collaborative web-based document editing tools being developed that use Markdown as their core file format, tools like <a href=\"https:\/\/draftin.com\/\">Draft<\/a> and <a href=\"https:\/\/www.authorea.com\/\">Authorea<\/a>. They provide multi-author editing, versioning, version comparison, and merging. These tools could constitute the system by which scholarly articles are written, collaborated on, revised, copyedited, and moved to the journal production process, generating efficiencies for a huge range of journals, efficiencies that we\u2019ve enjoyed in computer science and mathematics for years.<\/p>\n<p><a href=\"https:\/\/scholasticahq.com\/innovations-in-scholarly-publishing\/announcement\/one-of-the-biggest-bottlenecks-in-open-access-publishing-is-typesetting-it-shouldn-t-be\">As Rob Walsh of ScholasticaHQ<\/a> says, \u201cOne of the biggest bottlenecks in Open Access publishing is typesetting. It shouldn\u2019t be.\u201d A production ecology built around Markdown could be the solution.<\/p>\n<div class=\"footnotes\">\n<hr \/>\n<ol>\n<li id=\"fn1\">Many of the ideas in this post are not new. Complaints about WYSIWYG word-processing programs have a long history. <a href=\"http:\/\/ricardo.ecn.wfu.edu\/~cottrell\/wp.html\">Here\u2019s a particularly trenchant diatribe<\/a> pointing out the superiority of disentangling composition from typesetting. The idea of \u201cscholarly Markdown\u201d as the solution is also not new. See <a href=\"http:\/\/www.surefoss.org\/publishing-publizieren\/all-you-need-is-text-markdown-via-pandoc-for-academia\/\">this post<\/a> or <a href=\"https:\/\/scholasticahq.com\/innovations-in-scholarly-publishing\/announcement\/one-of-the-biggest-bottlenecks-in-open-access-publishing-is-typesetting-it-shouldn-t-be\">this one<\/a> for similar proposals. I go further in viewing certain current versions of Markdown (as implemented in Pandoc) as practical already for scholarly article production purposes, though I support coordinated efforts that could lead to improved lightweight markup formats for scholarly applications. <strong>Update September 22, 2014:<\/strong> I&#8217;ve just noticed a post by\u00a0Dennis Tenen and Grant Wythoff at\u00a0<em><a href=\"http:\/\/programminghistorian.org\/\">The Programming Historian<\/a><\/em> on &#8220;<a href=\"http:\/\/programminghistorian.org\/lessons\/sustainable-authorship-in-plain-text-using-pandoc-and-markdown\">Sustainable Authorship in Plain Text using Pandoc and Markdown<\/a>&#8221; giving a tutorial on\u00a0using these tools for writing scholarly history articles.<a href=\"#fnref1\">\u21a9<\/a><\/li>\n<li id=\"fn2\">As an example, I\u2019ve used this very blog post. Starting with the Markdown source file (which I\u2019ve attached to this post), I first generated HTML output for copying into the blog using the command\n<pre><code>pandoc -S --mathjax --base-header-level=3 markdownpost.md -o markdownpost.html<\/code><\/pre>\n<p>A nicely typeset version using the <a href=\"http:\/\/www.ams.org\/publications\/authors\/tex\/tex\">American Mathematical Society\u2019s journal article document style<\/a> can be generated with<\/p>\n<pre><code>pandoc markdownpost.md -V documentclass:amsart -o markdownpost-amsart.pdf<\/code><\/pre>\n<p>To target the style of <a href=\"http:\/\/www.acm.org\/publications\/latex_style\/\">ACM transactions<\/a> instead, the following command suffices:<\/p>\n<pre><code>pandoc markdownpost.md -V documentclass:acmsmall -o markdownpost-acmsmall.pdf<\/code><\/pre>\n<p>Both PDF versions are also attached to this post.<a href=\"#fnref2\">\u21a9<\/a><\/p>\n<table width=\"*\" bgcolor=\"#F7EFE5\">\n<tbody>\n<tr>\n<td align=\"center\"><strong>Attachments<\/strong><\/td>\n<\/tr>\n<tr>\n<td>\n<ul>\n<li><a href=\"http:\/\/blogs.law.harvard.edu\/pamphlet\/files\/2014\/08\/markdownpost.txt\">mardownpost.md<\/a>: The source file for this post in Markdown format<\/li>\n<li><a href=\"http:\/\/blogs.law.harvard.edu\/pamphlet\/files\/2014\/08\/markdownpost-amsart.pdf\">markdownpost-amsart.pdf<\/a>: The post rendered using pandoc according to AMS journal style<\/li>\n<li><a href=\"http:\/\/blogs.law.harvard.edu\/pamphlet\/files\/2014\/08\/markdownpost-acmsmall.pdf\">markdownpost-acmsmall.pdf<\/a>: The post rendered using pandoc according to ACM journal style<\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/li>\n<\/ol>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>With few exceptions, scholars would be better off writing their papers in a lightweight markup format called Markdown, rather than using a word-processing program like Microsoft Word. This post explains why, and reveals a hidden agenda as well.1 Microsoft Word is not appropriate for scholarly article production \u2026lightweight\u2026 \u201cOld two pan balance\u201d image from Nikodem [&hellip;]<\/p>\n","protected":false},"author":2110,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[380,68,1903],"tags":[],"class_list":["post-2151","post","type-post","status-publish","format-standard","hentry","category-computer-science","category-scholarly-communication","category-writing"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p5pLfN-yH","jetpack-related-posts":[{"id":6,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2009\/05\/22\/why-this-blog\/","url_meta":{"origin":2151,"position":0},"title":"Why this blog?","author":"Stuart Shieber","date":"Friday, May 22, 2009","format":false,"excerpt":"This blog presents occasional writings on whatever I'm interested in at the moment, which currently includes topics such as: scholarly communications and open access, and other university matters computer science topics of various sorts language, linguistics, and computational linguistics pedagogy and writing I expect that in the near term, I'll\u2026","rel":"","context":"In &quot;Lewis Carroll&quot;","block_context":{"text":"Lewis Carroll","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/other\/lewis-carroll\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2445,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2022\/07\/25\/moderating-principles\/","url_meta":{"origin":2151,"position":1},"title":"Moderating principles","author":"Stuart Shieber","date":"Monday, July 25, 2022","format":false,"excerpt":"Some time around April 1994, I founded the Computation and Language E-Print Archive, the first preprint repository for a subfield of computer science. It was hosted on Paul Ginsparg\u2019s arXiv platform, which at the time had been hosting only physics papers, built out from the original arXiv repository for high-energy\u2026","rel":"","context":"In &quot;computational linguistics&quot;","block_context":{"text":"computational linguistics","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/linguistics\/computational-linguistics\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":471,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2010\/06\/09\/a-proposal-to-simplify-the-university-of-north-texas-open-access-policy\/","url_meta":{"origin":2151,"position":2},"title":"A proposal to simplify the University of North Texas open-access policy","author":"Stuart Shieber","date":"Wednesday, June 9, 2010","format":false,"excerpt":"\"In High Places\", statue by Gerald Balciar, University of North Texas - Denton campus, installed 1990. Image via Wikipedia. The University of North Texas is engaged in a laudable process of designing an open-access policy for their community. Draft language for their policy is now available at their site on\u2026","rel":"","context":"In &quot;open access&quot;","block_context":{"text":"open access","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/scholarly-communication\/open-access\/"},"img":{"alt_text":"","src":"http:\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/c\/c4\/UNT_Eagle_statue.jpg\/300px-UNT_Eagle_statue.jpg","width":350,"height":200},"classes":[]},{"id":32,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2009\/05\/28\/open-access-policies-and-academic-freedom\/","url_meta":{"origin":2151,"position":3},"title":"Open-access policies and academic freedom","author":"Stuart Shieber","date":"Thursday, May 28, 2009","format":false,"excerpt":"I very occasionally hear expressed a concern about the Harvard open-access policy that it violates some aspect of academic freedom. The argument seems to be that by granting a prior license to Harvard, faculty may be forced to forgo publication in certain venues.\u00a0 Our rights as scholars to determine the\u2026","rel":"","context":"In &quot;open access&quot;","block_context":{"text":"open access","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/scholarly-communication\/open-access\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1647,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2013\/01\/29\/why-open-access-is-better-for-scholarly-societies\/","url_meta":{"origin":2151,"position":4},"title":"Why open access is better for scholarly societies","author":"Stuart Shieber","date":"Tuesday, January 29, 2013","format":false,"excerpt":"[This is a heavily edited transcript of a talk that I gave on January 3, 2013, at a panel on open access at the 87th Annual Meeting of the Linguistic Society of America (LSA, the main scholarly society for linguistics, and publisher of the journal Language), co-sponsored by the Modern\u2026","rel":"","context":"In &quot;open access&quot;","block_context":{"text":"open access","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/scholarly-communication\/open-access\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1515,"url":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/2012\/09\/17\/is-the-harvard-open-access-policy-legally-sound\/","url_meta":{"origin":2151,"position":5},"title":"Is the Harvard open-access policy legally sound?","author":"Stuart Shieber","date":"Monday, September 17, 2012","format":false,"excerpt":"...evidenced by a written instrument... \"To Sign a Contract 3\" image by shho. Used by permission. The idea behind rights-retention open-access policies is, as this year\u2019s OA Week slogan goes, to \u201cset the default to open access\u201d. Traditionally, authors retained rights to their scholarly articles only if they expressly negotiated\u2026","rel":"","context":"In &quot;open access&quot;","block_context":{"text":"open access","link":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/category\/scholarly-communication\/open-access\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/posts\/2151","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/users\/2110"}],"replies":[{"embeddable":true,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/comments?post=2151"}],"version-history":[{"count":31,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/posts\/2151\/revisions"}],"predecessor-version":[{"id":2403,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/posts\/2151\/revisions\/2403"}],"wp:attachment":[{"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/media?parent=2151"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/categories?post=2151"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/archive.blogs.harvard.edu\/pamphlet\/wp-json\/wp\/v2\/tags?post=2151"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}