Sha256: e8d5ad851df82a8ba9c067c989a46baed3d6b26a45d291dff161ec6414e222b8
Contents?: true
Size: 348 Bytes
Versions: 42
Compression:
Stored size: 348 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class Text < Value blocknize '^\s*"(.*)"\s*$', value: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) text = md2[1].gsub(/\\"/, '"') context.add_value(new(fields: { TEXT: text })) true end end end end
Version data entries
42 entries across 42 versions & 1 rubygems