Module: RubyBBCode::Tags
- Included in:
- RubyBBCode
- Defined in:
- lib/tags/tags.rb
Overview
Provides the official/default BBCode tags as stated by www.bbcode.org/reference.php
Constant Summary collapse
{ :b => { html_open: '<strong>', html_close: '</strong>', description: 'Make text bold', example: 'This is [b]bold[/b].' }, :i => { html_open: '<em>', html_close: '</em>', description: 'Make text italic', example: 'This is [i]italic[/i].' }, :u => { html_open: '<u>', html_close: '</u>', description: 'Underline text', example: 'This is [u]underlined[/u].' }, :s => { html_open: '<span style="text-decoration:line-through;">', html_close: '</span>', description: 'Strike-through text', example: 'This is [s]wrong[/s] good.' }, :center => { html_open: '<div style="text-align:center;">', html_close: '</div>', description: 'Center a text', example: '[center]This is centered[/center].' }, :ul => { html_open: '<ul>', html_close: '</ul>', description: 'Unordered list', block_tag: true, example: '[ul][li]List item[/li][li]Another list item[/li][/ul].', only_allow: [:li, '*'.to_sym] }, :code => { html_open: '<pre>', html_close: '</pre>', description: 'Code block with mono-spaced text', example: 'This is [code]mono-spaced code[/code].', block_tag: true }, :ol => { html_open: '<ol>', html_close: '</ol>', description: 'Ordered list', example: '[ol][li]List item[/li][li]Another list item[/li][/ol].', block_tag: true, only_allow: [:li, '*'.to_sym] }, :li => { html_open: '<li>', html_close: '</li>', description: 'List item', example: '[ul][li]List item[/li][li]Another list item[/li][/ul].', block_tag: true, only_in: %i[ul ol] }, :list => { html_open: '<ul>', html_close: '</ul>', description: 'Unordered list', example: '[list][*]List item[*]Another list item[/list].', block_tag: true, only_allow: ['*'.to_sym] }, '*'.to_sym => { html_open: '<li>', html_close: '</li>', description: 'List item', example: '[list][*]List item[*]Another list item[/list].', self_closable: true, block_tag: true, only_in: %i[list ul ol] }, :img => { html_open: '<img src="%between%" %width%%height%alt="" />', html_close: '', description: 'Image', example: '[img]http://www.google.com/intl/en_ALL/images/logo.gif[/img].', only_allow: [], require_between: true, allow_quick_param: true, allow_between_as_param: false, block_tag: true, quick_param_format: /^(\d+)x(\d+)$/, param_tokens: [{ token: :width, prefix: 'width="', postfix: '" ', optional: true }, { token: :height, prefix: 'height="', postfix: '" ', optional: true }], quick_param_format_description: 'The image parameters \'%param%\' are incorrect, \'<width>x<height>\' excepted' }, :url => { html_open: '<a href="%url%">%between%', html_close: '</a>', description: 'Link to another page', example: '[url]http://www.google.com/[/url].', require_between: true, allow_quick_param: true, allow_between_as_param: true, quick_param_format: %r{^((((http|https|ftp)://)|/).+)$}, quick_param_format_description: 'The URL should start with http:// https://, ftp:// or /, instead of \'%param%\'', param_tokens: [{ token: :url }] }, :quote => { html_open: '<div class="quote">%author%', html_close: '</div>', description: 'Quote another person', example: '[quote]BBCode is great[/quote]', allow_quick_param: true, allow_between_as_param: false, block_tag: true, quick_param_format: /(.*)/, param_tokens: [{ token: :author, prefix: '<strong>', postfix: ' wrote:</strong>', optional: true }] }, :size => { html_open: '<span style="font-size: %size%px;">', html_close: '</span>', description: 'Change the size of the text', example: '[size=32]This is 32px[/size]', allow_quick_param: true, allow_between_as_param: false, quick_param_format: /(\d+)/, quick_param_format_description: 'The size parameter \'%param%\' is incorrect, a number is expected', param_tokens: [{ token: :size }] }, :color => { html_open: '<span style="color: %color%;">', html_close: '</span>', description: 'Change the color of the text', example: '[color=red]This is red[/color]', allow_quick_param: true, allow_between_as_param: false, quick_param_format: /(([a-z]+)|(#[0-9a-f]{6}))/i, param_tokens: [{ token: :color }] }, :youtube => { html_open: '<iframe id="player" type="text/html" width="%width%" height="%height%" src="http://www.youtube.com/embed/%between%?enablejsapi=1" frameborder="0"></iframe>', html_close: '', description: 'YouTube video', example: '[youtube]E4Fbk52Mk1w[/youtube]', only_allow: [], url_matches: [/youtube\.com.*[v]=([^&]*)/, %r{youtu\.be/([^&]*)}, %r{y2u\.be/([^&]*)}], require_between: true, block_tag: true, param_tokens: [ { token: :width, optional: true, default: 400 }, { token: :height, optional: true, default: 320 } ] }, :vimeo => { html_open: '<iframe src="http://player.vimeo.com/video/%between%?badge=0" width="%width%" height="%height%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>', html_close: '', description: 'Vimeo video', example: '[vimeo]http://vimeo.com/46141955[/vimeo]', only_allow: [], url_matches: [%r{vimeo\.com/([^&]*)}], require_between: true, block_tag: true, param_tokens: [ { token: :width, optional: true, default: 400 }, { token: :height, optional: true, default: 320 } ] }, :media => { multi_tag: true, require_between: true, supported_tags: %i[ youtube vimeo ] } }
Class Method Summary collapse
Class Method Details
.tag_list ⇒ Object
156 157 158 |
# File 'lib/tags/tags.rb', line 156 def self.tag_list @@tags end |