43 lines
1.5 KiB
JavaScript
43 lines
1.5 KiB
JavaScript
|
// Usage:
|
||
|
//
|
||
|
// var myConverter = new Markdown.Converter(myEditor, null, { strings: Markdown.local.fr });
|
||
|
|
||
|
(function () {
|
||
|
Markdown.local = Markdown.local || {};
|
||
|
Markdown.local.fr = {
|
||
|
bold: "Gras <strong> Ctrl+B",
|
||
|
boldexample: "texte en gras",
|
||
|
|
||
|
italic: "Italique <em> Ctrl+I",
|
||
|
italicexample: "texte en italique",
|
||
|
|
||
|
link: "Hyperlien <a> Ctrl+L",
|
||
|
linkdescription: "description de l'hyperlien",
|
||
|
linkdialog: "<p><b>Insérer un hyperlien</b></p><p>http://example.com/ \"titre optionnel\"</p>",
|
||
|
|
||
|
quote: "Citation <blockquote> Ctrl+Q",
|
||
|
quoteexample: "Citation",
|
||
|
|
||
|
code: "Extrait de code <pre><code> Ctrl+K",
|
||
|
codeexample: "votre extrait de code",
|
||
|
|
||
|
image: "Image <img> Ctrl+G",
|
||
|
imagedescription: "description de l'image",
|
||
|
imagedialog: "<p><b>Insérer une image</b></p><p>http://example.com/images/diagram.jpg \"titre optionnel\"<br><br><a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>Vous chercher un hébergement d'image grauit ?</a></p>",
|
||
|
|
||
|
olist: "Liste numérotée <ol> Ctrl+O",
|
||
|
ulist: "Liste à point <ul> Ctrl+U",
|
||
|
litem: "Elément de liste",
|
||
|
|
||
|
heading: "Titre <h1>/<h2> Ctrl+H",
|
||
|
headingexample: "Titre",
|
||
|
|
||
|
hr: "Trait horizontal <hr> Ctrl+R",
|
||
|
|
||
|
undo: "Annuler - Ctrl+Z",
|
||
|
redo: "Refaire - Ctrl+Y",
|
||
|
redomac: "Refaire - Ctrl+Shift+Z",
|
||
|
|
||
|
help: "Aide sur Markdown"
|
||
|
};
|
||
|
})();
|