Class: CBETA::P5aToHTMLForEveryEdition
- Inherits:
-
Object
- Object
- CBETA::P5aToHTMLForEveryEdition
- Defined in:
- lib/cbeta/p5a_to_html_for_every_edition.rb
Overview
Convert CBETA XML P5a to HTML for every edition
例如 T0001 長阿含經 有 CBETA、元、宋、聖、磧砂、unknown、大、明、麗等版本, 每一個版本都會輸出一個 HTML 檔,以版本為檔名。
CBETA XML P5a 可由此取得: github.com/cbeta-git/xml-p5a
轉檔規則請參考: wiki.ddbc.edu.tw/pages/CBETA_XML_P5a_轉_HTML
Instance Method Summary collapse
-
#convert(target = nil) ⇒ Object
將 CBETA XML P5a 轉為 HTML.
-
#initialize(xml_root, out_root) ⇒ P5aToHTMLForEveryEdition
constructor
A new instance of P5aToHTMLForEveryEdition.
Constructor Details
#initialize(xml_root, out_root) ⇒ P5aToHTMLForEveryEdition
Returns a new instance of P5aToHTMLForEveryEdition.
24 25 26 27 28 29 |
# File 'lib/cbeta/p5a_to_html_for_every_edition.rb', line 24 def initialize(xml_root, out_root) @xml_root = xml_root @out_root = out_root @cbeta = CBETA.new @gaijis = CBETA::Gaiji.new end |
Instance Method Details
#convert(target = nil) ⇒ Object
將 CBETA XML P5a 轉為 HTML
T 是大正藏的 ID, CBETA 的藏經 ID 系統請參考: www.cbeta.org/format/id.php
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/cbeta/p5a_to_html_for_every_edition.rb', line 49 def convert(target=nil) return convert_all if target.nil? arg = target.upcase if arg.size == 1 handle_collection(arg) else if arg.include? '..' arg.match(/^([^\.]+?)\.\.([^\.]+)$/) { handle_vols($1, $2) } else handle_vol(arg) end end end |