13 lines
322 B
Ruby
13 lines
322 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module MarkdownCache
|
||
|
# Increment this number every time the renderer changes its output
|
||
|
CACHE_COMMONMARK_VERSION = 17
|
||
|
CACHE_COMMONMARK_VERSION_START = 10
|
||
|
|
||
|
BaseError = Class.new(StandardError)
|
||
|
UnsupportedClassError = Class.new(BaseError)
|
||
|
end
|
||
|
end
|