Sha256: 36a74328ccd6d0620b2e12ed2b54ed81f85f98243a94594a8f6579be41fe2305
Contents?: true
Size: 766 Bytes
Versions: 9
Compression:
Stored size: 766 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 # 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 strong { color: #aa0000; border: 1px solid #aa0000; background-color: transparent; text-decoration: line-through; } EOCSS super end end end
Version data entries
9 entries across 9 versions & 1 rubygems