Class: Coradoc::Html::Converters::Document

Inherits:
Base
  • Object
show all
Defined in:
lib/coradoc/html/converters/document.rb

Overview

Converter for Document

Class Method Summary collapse

Methods inherited from Base

build_class_attribute, build_element, build_html_attributes, convert_content_to_html, convert_element_to_core, convert_node_to_core, escape_attribute, escape_html, extract_model_attributes, extract_node_attributes, extract_text_fallback, find_converter_class_by_name, find_converter_for_model, handle_unknown_content, render_core_abbreviation, render_core_annotation_block, render_core_bibliography, render_core_bibliography_entry, render_core_block, render_core_block_image, render_core_definition_item, render_core_definition_list, render_core_footnote, render_core_footnote_reference, render_core_inline_element, render_core_inline_image, render_core_list_block, render_core_list_item, render_core_span, render_core_structural_element, render_core_table_cell, render_core_table_row, render_core_term, render_core_toc, render_core_toc_entry, resolve_block_semantic_type, resolve_format_specific_semantic, transform_to_coremodel, treat_children

Class Method Details

.convert_core_model_document(model, state = {}) ⇒ String

Convert CoreModel::StructuralElement to HTML

Parameters:

  • model (Coradoc::CoreModel::StructuralElement)

    CoreModel document

  • state (Hash) (defaults to: {})

    Conversion state

Returns:

  • (String)

    HTML string



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/coradoc/html/converters/document.rb', line 52

def convert_core_model_document(model, state = {})
  parts = []

  # Add title if present
  if model.title
    title_text = model.title.is_a?(String) ? model.title : model.title.to_s
    parts << build_element('h1', title_text) unless title_text.empty?
  end

  # Convert children
  model.children&.each do |child|
    html = convert_content_to_html(child, state)
    parts << html if html && !html.empty?
  end

  # Wrap in article tag with id="content" for CSS styling
  content = parts.join("\n")
  attributes = { id: 'content' }
  attributes[:id] = model.id if model.id
  build_element('article', content, attributes)
end

.to_coradoc(node, state = {}) ⇒ Coradoc::CoreModel::StructuralElement

Convert HTML document to CoreModel::StructuralElement

Parameters:

  • node (Nokogiri::XML::Document, Nokogiri::XML::Node)

    HTML document or article node

  • state (Hash) (defaults to: {})

    Conversion state

Returns:

  • (Coradoc::CoreModel::StructuralElement)

    Document model



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/coradoc/html/converters/document.rb', line 13

def to_coradoc(node, state = {})
  # Find the main content area
  body = find_body_content(node)

  # Extract document metadata
   = (node, state)

  # Process body content
  content = treat_children(body, state)

  # Create document
  doc = Coradoc::CoreModel::StructuralElement.new(
    element_type: 'document',
    title: [:title],
    children: content
  )

  # Store author in metadata if present
  doc. = (doc. || {}).merge(author: [:author]) if [:author]

  doc
end

.to_html(model, state = {}) ⇒ String

Convert CoreModel::StructuralElement to HTML

Parameters:

  • model (Coradoc::CoreModel::StructuralElement)

    Document model

  • state (Hash) (defaults to: {})

    Conversion state

Returns:

  • (String)

    HTML string



40
41
42
43
44
45
46
# File 'lib/coradoc/html/converters/document.rb', line 40

def to_html(model, state = {})
  # Handle CoreModel::StructuralElement
  return convert_core_model_document(model, state) if model.is_a?(Coradoc::CoreModel::StructuralElement)

  # Fallback for other types
  ''
end