Sha256: 8225b59c5ff614ff497b0353511333f1b236d669497954084bc4e488a8749892
Contents?: true
Size: 695 Bytes
Versions: 45
Compression:
Stored size: 695 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `w:CommentRangeStart` tags class CommentRangeStart < OOXMLDocumentObject # @return [Integer] id of bookmark attr_reader :id # Parse CommentRangeStart object # @param node [Nokogiri::XML:Element] node to parse # @return [CommentRangeStart] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'id' @id = value.value.to_i end end self end # @return [Comment] object of current comment range def comment root_object.comments.comments_array.detect { |comment| comment.id == id } end end end
Version data entries
45 entries across 45 versions & 1 rubygems