Skip to content

Commit

Permalink
chore: Update adiwg-mdtranslator gem dependency to version 2.19.0.pre…
Browse files Browse the repository at this point in the history
….beta.15
  • Loading branch information
jwaspin committed May 9, 2024
1 parent f1177e2 commit 5d0f14c
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,13 @@ def writeConformanceResult(conformanceResult)
end
end
end

# Name
unless result[:name].nil?
@html.em('Name: ')
@html.text!(result[:name])
@html.br
end

# Specification (citation)
unless result[:specification].empty?
Expand Down Expand Up @@ -242,6 +249,13 @@ def writeCoverageResult(coverageResult)
end
end

# Name
unless result[:name].nil?
@html.em('Name: ')
@html.text!(result[:name])
@html.br
end

# SpatialRepresentationType
unless result[:spatialRepresentationType].nil?
@html.em('Spatial Representation Type: ')
Expand Down Expand Up @@ -317,6 +331,13 @@ def writeDescriptiveResult(descriptiveResult)
end
end
end

# Name
unless result[:name].nil?
@html.em('Name: ')
@html.text!(result[:name])
@html.br
end

# Statement
unless result[:statement].nil?
Expand Down Expand Up @@ -352,6 +373,13 @@ def writeQuantitativeResult(quantitativeResult)
end
end
end

# Name
unless result[:name].nil?
@html.em('Name: ')
@html.text!(result[:name])
@html.br
end

# Value
unless result[:values].empty?
Expand Down

0 comments on commit 5d0f14c

Please sign in to comment.