]> git.draconx.ca Git - homepage.git/blobdiff - lib/helpers.rb
Put some actual material on the site.
[homepage.git] / lib / helpers.rb
index 1b354df1df1c7ccf2da57f4b3911bda07b4b1b3b..d2f3a7c1fe1ab2cdffdd1850d867a56b4811e176 100644 (file)
@@ -1,6 +1,6 @@
 # Nick's web site: Ruby helpers for processing
 #
-# Copyright © 2018 Nick Bowler
+# Copyright © 2018-2019 Nick Bowler
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -17,6 +17,8 @@
 
 require 'nokogiri'
 
+use_helper Nanoc::Helpers::Breadcrumbs
+
 Xmlns = {
     'xhtml' => 'http://www.w3.org/1999/xhtml'
 }.freeze
@@ -51,3 +53,13 @@ def find_license(license)
     raise("License not defined: " + license) if !matches.length
     return matches.sort_by { |item| item.identifier } [0]
 end
+
+# Return the first paragraph of the given item as a string.
+def item_longdesc(item)
+    xml = Nokogiri::XML("<body xmlns='" + Xmlns["xhtml"] + "'>" +
+                        item.compiled_content(snapshot: :rawbody) +
+                        "</body>")
+
+    p = xml.xpath('//xhtml:p', Xmlns)
+    if p.empty? then nil else p[0].xpath('string(.)') end
+end