Sha256: 5b01a0736395178c2e437206813b86abb2a111508fb04f474f819c3317f7b114
Contents?: true
Size: 851 Bytes
Versions: 15
Compression:
Stored size: 851 Bytes
Contents
# -*- encoding: utf-8 -*- module Webgen # Namespace for all classes that are useable by Webgen::ContentProcessor::Tag. # # Have a look at the documentation for Webgen::Tag::Base for details on how to implement a tag # class. module Tag autoload :Base, 'webgen/tag/base' autoload :Relocatable, 'webgen/tag/relocatable' autoload :Metainfo, 'webgen/tag/metainfo' autoload :Menu, 'webgen/tag/menu' autoload :BreadcrumbTrail, 'webgen/tag/breadcrumbtrail' autoload :Langbar, 'webgen/tag/langbar' autoload :IncludeFile, 'webgen/tag/includefile' autoload :ExecuteCommand, 'webgen/tag/executecommand' autoload :Coderay, 'webgen/tag/coderay' autoload :Date, 'webgen/tag/date' autoload :Sitemap, 'webgen/tag/sitemap' autoload :TikZ, 'webgen/tag/tikz' autoload :Link, 'webgen/tag/link' end end
Version data entries
15 entries across 15 versions & 3 rubygems