Sha256: ca4e17090ffdf9958d79bc8d5c0b125e91c2e956d38c7845131de6285402c62e
Contents?: true
Size: 900 Bytes
Versions: 21
Compression:
Stored size: 900 Bytes
Contents
require "jsduck/tag/deprecated_tag" module JsDuck::Tag # To document members that were present in previous version but are # completely gone now. Other than that it behaves exactly like # @deprecated. class Removed < DeprecatedTag def initialize @tagname = :removed @msg = "This {TAGNAME} has been <strong>removed</strong>" # striked-through text with red border. @css = <<-EOCSS .signature .removed { color: #aa0000; background-color: transparent; border: 1px solid #aa0000; text-decoration: line-through; } .removed-box { border: 2px solid #aa0000; } .removed-box strong { color: #aa0000; border: 2px solid #aa0000; background-color: transparent; text-decoration: line-through; } EOCSS super end end end
Version data entries
21 entries across 21 versions & 3 rubygems