// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// Html tags
// http://en.wikipedia.org/wiki/html
// ----------------------------------------------------------------------------
// Basic set. Feel free to add more tags
// ----------------------------------------------------------------------------
mySettings = {	
    nameSpace:          "wiki", // Useful to prevent multi-instances CSS conflict
    previewParserPath:  "/preview",
    onShiftEnter:       {keepDefault:false, replaceWith:'\n\n'},
    previewInWindow: 'width=600, height=600, resizable=yes, scrollbars=yes',
    markupSet:  [
        {name:'大見出し', key:'1', openWith:'== ', closeWith:' ==', placeHolder:'Your title here...' },
        {name:'小見出し', key:'2', openWith:'=== ', closeWith:' ===', placeHolder:'Your title here...' },
        {separator:'---------------' },        
        {name:'太字', key:'B', openWith:"'''", closeWith:"'''"}, 
        {name:'打消線', key:'S', openWith:"''", closeWith:"''"}, 
        {separator:'---------------' },
        {name:'リスト', openWith:'(!(* |!|*)!)'}, 
        {name:'番号付きリスト', openWith:'(!(# |!|#)!)'}, 
        {separator:'---------------' },
        {name:'画像', replaceWith:'<img src="[![Source:!:http://]!]" alt="[![Alternative text]!]" />' },
        {name:'引用', openWith:'(!(> |!|>)!)'},
        {separator:'---------------' },
        {name:'プレビュー', call:'preview', className:'preview'}
    ]
}