Welcome to mirror list, hosted at ThFree Co, Russian Federation.

symbolized_markdown_helper.rb « lib « ipynbdiff « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c075aa0d8788b7b30283d73c0e039545d05cf216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module IpynbDiff
  # Helper functions
  module SymbolizedMarkdownHelper

    def _(symbol = nil, content = '')
      { symbol: symbol, content: content }
    end

    def symbolize_array(symbol, content, &block)
      if content.is_a?(Array)
        content.map.with_index { |l, idx| _(symbol / idx, block.call(l)) }
      else
        content.split("\n").map { |c| _(symbol, c) }
      end
    end
  end

  # Simple wrapper for a string
  class JsonSymbol < String
    def /(other)
      JsonSymbol.new((other.is_a?(Array) ? [self, *other] : [self, other]).join('.'))
    end
  end
end