| Current Path : /home/lejardintz/www/components/com_komento/classes/markitup/sets/bbcode/ |
| Current File : /home/lejardintz/www/components/com_komento/classes/markitup/sets/bbcode/set.js |
// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// BBCode tags example
// http://en.wikipedia.org/wiki/Bbcode
// ----------------------------------------------------------------------------
// Feel free to add more tags
// ----------------------------------------------------------------------------
/**
* @package Komento
* @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
KomentoBBCodeSettings = {
previewParserPath: "~/sets/bbcode/parser.php", // path to your BBCode parser
previewParserVar: 'data',
markupSet: [
{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]'},
{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'},
{name:'Underline', key:'U', openWith:'[u]', closeWith:'[/u]'},
{separator:'---------------' },
{name:'Picture', key:'P', replaceWith:'[img][![Url]!][/img]'},
{separator:'---------------' },
{name:'Bulleted list', openWith:'[list]\n', closeWith:'\n[/list]'},
{name:'Numeric list', openWith:'[list=[![Starting number]!]]\n', closeWith:'\n[/list]'},
{name:'List item', openWith:'[*] '},
{separator:'---------------' },
{name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
//{name:'Code', openWith:'[code]', closeWith:'[/code]'},
//{separator:'---------------' },
{name:'Clean', className:"clean", replaceWith:function(markitup) { return markitup.selection.replace(/\[(.*?)\]/g, "") } },
//{name:'Preview', className:"preview", call:'preview' },
{separator:'---------------' },
{name:'Happy', openWith:':)'},
{name:'Smile', openWith:':D'},
{name:'Surprised', openWith:':o'},
{name:'Tongue', openWith:':p'},
{name:'Unhappy', openWith:':('},
{name:'Wink', openWith:';)'}
]
}