mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 20:38:16 +08:00
website 新增md编辑器
This commit is contained in:
@ -0,0 +1,173 @@
|
||||
/*!
|
||||
* HTML entities dialog plugin for Editor.md
|
||||
*
|
||||
* @file html-entities-dialog.js
|
||||
* @author pandao
|
||||
* @version 1.2.0
|
||||
* @updateTime 2015-03-08
|
||||
* {@link https://github.com/pandao/editor.md}
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
(function() {
|
||||
|
||||
var factory = function (exports) {
|
||||
|
||||
var $ = jQuery;
|
||||
var pluginName = "html-entities-dialog";
|
||||
var selecteds = [];
|
||||
var entitiesData = [];
|
||||
|
||||
exports.fn.htmlEntitiesDialog = function() {
|
||||
var _this = this;
|
||||
var cm = this.cm;
|
||||
var lang = _this.lang;
|
||||
var settings = _this.settings;
|
||||
var path = settings.pluginPath + pluginName + "/";
|
||||
var editor = this.editor;
|
||||
var cursor = cm.getCursor();
|
||||
var selection = cm.getSelection();
|
||||
var classPrefix = _this.classPrefix;
|
||||
|
||||
var dialogName = classPrefix + "dialog-" + pluginName, dialog;
|
||||
var dialogLang = lang.dialog.htmlEntities;
|
||||
|
||||
var dialogContent = [
|
||||
'<div class="' + classPrefix + 'html-entities-box" style=\"width: 760px;height: 334px;margin-bottom: 8px;overflow: hidden;overflow-y: auto;\">',
|
||||
'<div class="' + classPrefix + 'grid-table">',
|
||||
'</div>',
|
||||
'</div>',
|
||||
].join("\r\n");
|
||||
|
||||
cm.focus();
|
||||
|
||||
if (editor.find("." + dialogName).length > 0)
|
||||
{
|
||||
dialog = editor.find("." + dialogName);
|
||||
|
||||
selecteds = [];
|
||||
dialog.find("a").removeClass("selected");
|
||||
|
||||
this.dialogShowMask(dialog);
|
||||
this.dialogLockScreen();
|
||||
dialog.show();
|
||||
}
|
||||
else
|
||||
{
|
||||
dialog = this.createDialog({
|
||||
name : dialogName,
|
||||
title : dialogLang.title,
|
||||
width : 800,
|
||||
height : 475,
|
||||
mask : settings.dialogShowMask,
|
||||
drag : settings.dialogDraggable,
|
||||
content : dialogContent,
|
||||
lockScreen : settings.dialogLockScreen,
|
||||
maskStyle : {
|
||||
opacity : settings.dialogMaskOpacity,
|
||||
backgroundColor : settings.dialogMaskBgColor
|
||||
},
|
||||
buttons : {
|
||||
enter : [lang.buttons.enter, function() {
|
||||
cm.replaceSelection(selecteds.join(" "));
|
||||
this.hide().lockScreen(false).hideMask();
|
||||
|
||||
return false;
|
||||
}],
|
||||
cancel : [lang.buttons.cancel, function() {
|
||||
this.hide().lockScreen(false).hideMask();
|
||||
|
||||
return false;
|
||||
}]
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var table = dialog.find("." + classPrefix + "grid-table");
|
||||
|
||||
var drawTable = function() {
|
||||
|
||||
if (entitiesData.length < 1) return ;
|
||||
|
||||
var rowNumber = 20;
|
||||
var pageTotal = Math.ceil(entitiesData.length / rowNumber);
|
||||
|
||||
table.html("");
|
||||
|
||||
for (var i = 0; i < pageTotal; i++)
|
||||
{
|
||||
var row = "<div class=\"" + classPrefix + "grid-table-row\">";
|
||||
|
||||
for (var x = 0; x < rowNumber; x++)
|
||||
{
|
||||
var entity = entitiesData[(i * rowNumber) + x];
|
||||
|
||||
if (typeof entity !== "undefined")
|
||||
{
|
||||
var name = entity.name.replace("&", "&");
|
||||
|
||||
row += "<a href=\"javascript:;\" value=\"" + entity.name + "\" title=\"" + name + "\" class=\"" + classPrefix + "html-entity-btn\">" + name + "</a>";
|
||||
}
|
||||
}
|
||||
|
||||
row += "</div>";
|
||||
|
||||
table.append(row);
|
||||
}
|
||||
|
||||
dialog.find("." + classPrefix + "html-entity-btn").bind(exports.mouseOrTouch("click", "touchend"), function() {
|
||||
$(this).toggleClass("selected");
|
||||
|
||||
if ($(this).hasClass("selected"))
|
||||
{
|
||||
selecteds.push($(this).attr("value"));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
if (entitiesData.length < 1)
|
||||
{
|
||||
if (typeof (dialog.loading) == "function") dialog.loading(true);
|
||||
|
||||
$.getJSON(path + pluginName.replace("-dialog", "") + ".json", function(json) {
|
||||
|
||||
if (typeof (dialog.loading) == "function") dialog.loading(false);
|
||||
|
||||
entitiesData = json;
|
||||
drawTable();
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
drawTable();
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
// CommonJS/Node.js
|
||||
if (typeof require === "function" && typeof exports === "object" && typeof module === "object")
|
||||
{
|
||||
module.exports = factory;
|
||||
}
|
||||
else if (typeof define === "function") // AMD/CMD/Sea.js
|
||||
{
|
||||
if (define.amd) { // for Require.js
|
||||
|
||||
define(["editormd"], function(editormd) {
|
||||
factory(editormd);
|
||||
});
|
||||
|
||||
} else { // for Sea.js
|
||||
define(function(require) {
|
||||
var editormd = require("./../../editormd");
|
||||
factory(editormd);
|
||||
});
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
factory(window.editormd);
|
||||
}
|
||||
|
||||
})();
|
@ -0,0 +1,936 @@
|
||||
[
|
||||
{
|
||||
"name" : "&#64;",
|
||||
"description":"at symbol"
|
||||
},
|
||||
{
|
||||
"name":"&copy;",
|
||||
"description":"copyright symbol"
|
||||
},
|
||||
{
|
||||
"name":"&reg;",
|
||||
"description":"registered symbol"
|
||||
},
|
||||
{
|
||||
"name":"&trade;",
|
||||
"description":"trademark symbol"
|
||||
},
|
||||
{
|
||||
"name":"&hearts;",
|
||||
"description":"heart"
|
||||
},
|
||||
{
|
||||
"name":"&nbsp;",
|
||||
"description":"Inserts a non-breaking blank space"
|
||||
},
|
||||
{
|
||||
"name":"&amp;",
|
||||
"description":"Ampersand"
|
||||
},
|
||||
{
|
||||
"name":"&#36;",
|
||||
"description":"dollar symbol"
|
||||
},
|
||||
{
|
||||
"name":"&cent;",
|
||||
"description":"Cent symbol"
|
||||
},
|
||||
{
|
||||
"name":"&pound;",
|
||||
"description":"Pound"
|
||||
},
|
||||
{
|
||||
"name":"&yen;",
|
||||
"description":"Yen"
|
||||
},
|
||||
{
|
||||
"name":"&euro;",
|
||||
"description":"Euro symbol"
|
||||
},
|
||||
{
|
||||
"name":"&quot;",
|
||||
"description":"quotation mark"
|
||||
},
|
||||
{
|
||||
"name":"&ldquo;",
|
||||
"description":"Opening Double Quotes "
|
||||
},
|
||||
{
|
||||
"name":"&rdquo;",
|
||||
"description":"Closing Double Quotes "
|
||||
},
|
||||
{
|
||||
"name":"&lsquo;",
|
||||
"description":"Opening Single Quote Mark "
|
||||
},
|
||||
{
|
||||
"name":"&rsquo;",
|
||||
"description":"Closing Single Quote Mark "
|
||||
},
|
||||
{
|
||||
"name":"&laquo;",
|
||||
"description":"angle quotation mark (left)"
|
||||
},
|
||||
{
|
||||
"name":"&raquo;",
|
||||
"description":"angle quotation mark (right)"
|
||||
},
|
||||
{
|
||||
"name":"&lsaquo;",
|
||||
"description":"single left angle quotation"
|
||||
},
|
||||
{
|
||||
"name":"&rsaquo;",
|
||||
"description":"single right angle quotation"
|
||||
},
|
||||
{
|
||||
"name":"&sect;",
|
||||
"description":"Section Symbol"
|
||||
},
|
||||
{
|
||||
"name":"&micro;",
|
||||
"description":"micro sign"
|
||||
},
|
||||
{
|
||||
"name":"&para;",
|
||||
"description":"Paragraph symbol"
|
||||
},
|
||||
{
|
||||
"name":"&bull;",
|
||||
"description":"Big List Dot"
|
||||
},
|
||||
{
|
||||
"name":"&middot;",
|
||||
"description":"Medium List Dot"
|
||||
},
|
||||
{
|
||||
"name":"&hellip;",
|
||||
"description":"horizontal ellipsis"
|
||||
},
|
||||
{
|
||||
"name":"&#124;",
|
||||
"description":"vertical bar"
|
||||
},
|
||||
{
|
||||
"name":"&brvbar;",
|
||||
"description":"broken vertical bar"
|
||||
},
|
||||
{
|
||||
"name":"&ndash;",
|
||||
"description":"en-dash"
|
||||
},
|
||||
{
|
||||
"name":"&mdash;",
|
||||
"description":"em-dash"
|
||||
},
|
||||
{
|
||||
"name":"&curren;",
|
||||
"description":"Generic currency symbol"
|
||||
},
|
||||
{
|
||||
"name":"&#33;",
|
||||
"description":"exclamation point"
|
||||
},
|
||||
{
|
||||
"name":"&#35;",
|
||||
"description":"number sign"
|
||||
},
|
||||
{
|
||||
"name":"&#39;",
|
||||
"description":"single quote"
|
||||
},
|
||||
{
|
||||
"name":"&#40;",
|
||||
"description":""
|
||||
},
|
||||
{
|
||||
"name":"&#41;",
|
||||
"description":""
|
||||
},
|
||||
{
|
||||
"name":"&#42;",
|
||||
"description":"asterisk"
|
||||
},
|
||||
{
|
||||
"name":"&#43;",
|
||||
"description":"plus sign"
|
||||
},
|
||||
{
|
||||
"name":"&#44;",
|
||||
"description":"comma"
|
||||
},
|
||||
{
|
||||
"name":"&#45;",
|
||||
"description":"minus sign - hyphen"
|
||||
},
|
||||
{
|
||||
"name":"&#46;",
|
||||
"description":"period"
|
||||
},
|
||||
{
|
||||
"name":"&#47;",
|
||||
"description":"slash"
|
||||
},
|
||||
{
|
||||
"name":"&#48;",
|
||||
"description":"0"
|
||||
},
|
||||
{
|
||||
"name":"&#49;",
|
||||
"description":"1"
|
||||
},
|
||||
{
|
||||
"name":"&#50;",
|
||||
"description":"2"
|
||||
},
|
||||
{
|
||||
"name":"&#51;",
|
||||
"description":"3"
|
||||
},
|
||||
{
|
||||
"name":"&#52;",
|
||||
"description":"4"
|
||||
},
|
||||
{
|
||||
"name":"&#53;",
|
||||
"description":"5"
|
||||
},
|
||||
{
|
||||
"name":"&#54;",
|
||||
"description":"6"
|
||||
},
|
||||
{
|
||||
"name":"&#55;",
|
||||
"description":"7"
|
||||
},
|
||||
{
|
||||
"name":"&#56;",
|
||||
"description":"8"
|
||||
},
|
||||
{
|
||||
"name":"&#57;",
|
||||
"description":"9"
|
||||
},
|
||||
{
|
||||
"name":"&#58;",
|
||||
"description":"colon"
|
||||
},
|
||||
{
|
||||
"name":"&#59;",
|
||||
"description":"semicolon"
|
||||
},
|
||||
{
|
||||
"name":"&#61;",
|
||||
"description":"equal sign"
|
||||
},
|
||||
{
|
||||
"name":"&#63;",
|
||||
"description":"question mark"
|
||||
},
|
||||
{
|
||||
"name":"&lt;",
|
||||
"description":"Less than"
|
||||
},
|
||||
{
|
||||
"name":"&gt;",
|
||||
"description":"Greater than"
|
||||
},
|
||||
{
|
||||
"name":"&le;",
|
||||
"description":"Less than or Equal to"
|
||||
},
|
||||
{
|
||||
"name":"&ge;",
|
||||
"description":"Greater than or Equal to"
|
||||
},
|
||||
{
|
||||
"name":"&times;",
|
||||
"description":"Multiplication symbol"
|
||||
},
|
||||
{
|
||||
"name":"&divide;",
|
||||
"description":"Division symbol"
|
||||
},
|
||||
{
|
||||
"name":"&minus;",
|
||||
"description":"Minus symbol"
|
||||
},
|
||||
{
|
||||
"name":"&plusmn;",
|
||||
"description":"Plus/minus symbol"
|
||||
},
|
||||
{
|
||||
"name":"&ne;",
|
||||
"description":"Not Equal"
|
||||
},
|
||||
{
|
||||
"name":"&sup1;",
|
||||
"description":"Superscript 1"
|
||||
},
|
||||
{
|
||||
"name":"&sup2;",
|
||||
"description":"Superscript 2"
|
||||
},
|
||||
{
|
||||
"name":"&sup3;",
|
||||
"description":"Superscript 3"
|
||||
},
|
||||
{
|
||||
"name":"&frac12;",
|
||||
"description":"Fraction ½"
|
||||
},
|
||||
{
|
||||
"name":"&frac14;",
|
||||
"description":"Fraction ¼"
|
||||
},
|
||||
{
|
||||
"name":"&frac34;",
|
||||
"description":"Fraction ¾"
|
||||
},
|
||||
{
|
||||
"name":"&permil;",
|
||||
"description":"per mille"
|
||||
},
|
||||
{
|
||||
"name":"&deg;",
|
||||
"description":"Degree symbol"
|
||||
},
|
||||
{
|
||||
"name":"&radic;",
|
||||
"description":"square root"
|
||||
},
|
||||
{
|
||||
"name":"&infin;",
|
||||
"description":"Infinity"
|
||||
},
|
||||
{
|
||||
"name":"&larr;",
|
||||
"description":"left arrow"
|
||||
},
|
||||
{
|
||||
"name":"&uarr;",
|
||||
"description":"up arrow"
|
||||
},
|
||||
{
|
||||
"name":"&rarr;",
|
||||
"description":"right arrow"
|
||||
},
|
||||
{
|
||||
"name":"&darr;",
|
||||
"description":"down arrow"
|
||||
},
|
||||
{
|
||||
"name":"&harr;",
|
||||
"description":"left right arrow"
|
||||
},
|
||||
{
|
||||
"name":"&crarr;",
|
||||
"description":"carriage return arrow"
|
||||
},
|
||||
{
|
||||
"name":"&lceil;",
|
||||
"description":"left ceiling"
|
||||
},
|
||||
{
|
||||
"name":"&rceil;",
|
||||
"description":"right ceiling"
|
||||
},
|
||||
{
|
||||
"name":"&lfloor;",
|
||||
"description":"left floor"
|
||||
},
|
||||
{
|
||||
"name":"&rfloor;",
|
||||
"description":"right floor"
|
||||
},
|
||||
{
|
||||
"name":"&spades;",
|
||||
"description":"spade"
|
||||
},
|
||||
{
|
||||
"name":"&clubs;",
|
||||
"description":"club"
|
||||
},
|
||||
{
|
||||
"name":"&hearts;",
|
||||
"description":"heart"
|
||||
},
|
||||
{
|
||||
"name":"&diams;",
|
||||
"description":"diamond"
|
||||
},
|
||||
{
|
||||
"name":"&loz;",
|
||||
"description":"lozenge"
|
||||
},
|
||||
{
|
||||
"name":"&dagger;",
|
||||
"description":"dagger"
|
||||
},
|
||||
{
|
||||
"name":"&Dagger;",
|
||||
"description":"double dagger"
|
||||
},
|
||||
{
|
||||
"name":"&iexcl;",
|
||||
"description":"inverted exclamation mark"
|
||||
},
|
||||
{
|
||||
"name":"&iquest;",
|
||||
"description":"inverted question mark"
|
||||
},
|
||||
{
|
||||
"name":"&#338;",
|
||||
"description":"latin capital letter OE"
|
||||
},
|
||||
{
|
||||
"name":"&#339;",
|
||||
"description":"latin small letter oe"
|
||||
},
|
||||
{
|
||||
"name":"&#352;",
|
||||
"description":"latin capital letter S with caron"
|
||||
},
|
||||
{
|
||||
"name":"&#353;",
|
||||
"description":"latin small letter s with caron"
|
||||
},
|
||||
{
|
||||
"name":"&#376;",
|
||||
"description":"latin capital letter Y with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&#402;",
|
||||
"description":"latin small f with hook - function"
|
||||
},
|
||||
{
|
||||
"name":"&not;",
|
||||
"description":"not sign"
|
||||
},
|
||||
{
|
||||
"name":"&ordf;",
|
||||
"description":"feminine ordinal indicator"
|
||||
},
|
||||
{
|
||||
"name":"&uml;",
|
||||
"description":"spacing diaeresis - umlaut"
|
||||
},
|
||||
{
|
||||
"name":"&macr;",
|
||||
"description":"spacing macron - overline"
|
||||
},
|
||||
{
|
||||
"name":"&acute;",
|
||||
"description":"acute accent - spacing acute"
|
||||
},
|
||||
{
|
||||
"name":"&Agrave;",
|
||||
"description":"latin capital letter A with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Aacute;",
|
||||
"description":"latin capital letter A with acute"
|
||||
},
|
||||
{
|
||||
"name":"&Acirc;",
|
||||
"description":"latin capital letter A with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&Atilde;",
|
||||
"description":"latin capital letter A with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&Auml;",
|
||||
"description":"latin capital letter A with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&Aring;",
|
||||
"description":"latin capital letter A with ring above"
|
||||
},
|
||||
{
|
||||
"name":"&AElig;",
|
||||
"description":"latin capital letter AE"
|
||||
},
|
||||
{
|
||||
"name":"&Ccedil;",
|
||||
"description":"latin capital letter C with cedilla"
|
||||
},
|
||||
{
|
||||
"name":"&Egrave;",
|
||||
"description":"latin capital letter E with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Eacute;",
|
||||
"description":"latin capital letter E with acute"
|
||||
},
|
||||
{
|
||||
"name":"&Ecirc;",
|
||||
"description":"latin capital letter E with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&Euml;",
|
||||
"description":"latin capital letter E with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&Igrave;",
|
||||
"description":"latin capital letter I with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Iacute;",
|
||||
"description":"latin capital letter I with acute"
|
||||
},
|
||||
{
|
||||
"name":"&Icirc;",
|
||||
"description":"latin capital letter I with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&Iuml;",
|
||||
"description":"latin capital letter I with diaeresis"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"&ETH;",
|
||||
"description":"latin capital letter ETH"
|
||||
},
|
||||
{
|
||||
"name":"&Ntilde;",
|
||||
"description":"latin capital letter N with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&Ograve;",
|
||||
"description":"latin capital letter O with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Oacute;",
|
||||
"description":"latin capital letter O with acute"
|
||||
},
|
||||
{
|
||||
"name":"&Ocirc;",
|
||||
"description":"latin capital letter O with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&Otilde;",
|
||||
"description":"latin capital letter O with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&Ouml;",
|
||||
"description":"latin capital letter O with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&times;",
|
||||
"description":"multiplication sign"
|
||||
},
|
||||
{
|
||||
"name":"&Oslash;",
|
||||
"description":"latin capital letter O with slash"
|
||||
},
|
||||
{
|
||||
"name":"&Ugrave;",
|
||||
"description":"latin capital letter U with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Uacute;",
|
||||
"description":"latin capital letter U with acute"
|
||||
},
|
||||
{
|
||||
"name":"&Ucirc;",
|
||||
"description":"latin capital letter U with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&Uuml;",
|
||||
"description":"latin capital letter U with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&Yacute;",
|
||||
"description":"latin capital letter Y with acute"
|
||||
},
|
||||
{
|
||||
"name":"&THORN;",
|
||||
"description":"latin capital letter THORN"
|
||||
},
|
||||
{
|
||||
"name":"&szlig;",
|
||||
"description":"latin small letter sharp s - ess-zed"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"name":"&eth;",
|
||||
"description":"latin capital letter eth"
|
||||
},
|
||||
{
|
||||
"name":"&ntilde;",
|
||||
"description":"latin capital letter n with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&ograve;",
|
||||
"description":"latin capital letter o with grave"
|
||||
},
|
||||
{
|
||||
"name":"&oacute;",
|
||||
"description":"latin capital letter o with acute"
|
||||
},
|
||||
{
|
||||
"name":"&ocirc;",
|
||||
"description":"latin capital letter o with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&otilde;",
|
||||
"description":"latin capital letter o with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&ouml;",
|
||||
"description":"latin capital letter o with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&times;",
|
||||
"description":"multiplication sign"
|
||||
},
|
||||
{
|
||||
"name":"&oslash;",
|
||||
"description":"latin capital letter o with slash"
|
||||
},
|
||||
{
|
||||
"name":"&ugrave;",
|
||||
"description":"latin capital letter u with grave"
|
||||
},
|
||||
{
|
||||
"name":"&uacute;",
|
||||
"description":"latin capital letter u with acute"
|
||||
},
|
||||
{
|
||||
"name":"&ucirc;",
|
||||
"description":"latin capital letter u with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&uuml;",
|
||||
"description":"latin capital letter u with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&yacute;",
|
||||
"description":"latin capital letter y with acute"
|
||||
},
|
||||
{
|
||||
"name":"&thorn;",
|
||||
"description":"latin capital letter thorn"
|
||||
},
|
||||
{
|
||||
"name":"&yuml;",
|
||||
"description":"latin small letter y with diaeresis"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"&agrave;",
|
||||
"description":"latin capital letter a with grave"
|
||||
},
|
||||
{
|
||||
"name":"&aacute;",
|
||||
"description":"latin capital letter a with acute"
|
||||
},
|
||||
{
|
||||
"name":"&acirc;",
|
||||
"description":"latin capital letter a with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&atilde;",
|
||||
"description":"latin capital letter a with tilde"
|
||||
},
|
||||
{
|
||||
"name":"&auml;",
|
||||
"description":"latin capital letter a with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&aring;",
|
||||
"description":"latin capital letter a with ring above"
|
||||
},
|
||||
{
|
||||
"name":"&aelig;",
|
||||
"description":"latin capital letter ae"
|
||||
},
|
||||
{
|
||||
"name":"&ccedil;",
|
||||
"description":"latin capital letter c with cedilla"
|
||||
},
|
||||
{
|
||||
"name":"&egrave;",
|
||||
"description":"latin capital letter e with grave"
|
||||
},
|
||||
{
|
||||
"name":"&eacute;",
|
||||
"description":"latin capital letter e with acute"
|
||||
},
|
||||
{
|
||||
"name":"&ecirc;",
|
||||
"description":"latin capital letter e with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&euml;",
|
||||
"description":"latin capital letter e with diaeresis"
|
||||
},
|
||||
{
|
||||
"name":"&igrave;",
|
||||
"description":"latin capital letter i with grave"
|
||||
},
|
||||
{
|
||||
"name":"&Iacute;",
|
||||
"description":"latin capital letter i with acute"
|
||||
},
|
||||
{
|
||||
"name":"&icirc;",
|
||||
"description":"latin capital letter i with circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&iuml;",
|
||||
"description":"latin capital letter i with diaeresis"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"&#65;",
|
||||
"description":"A"
|
||||
},
|
||||
{
|
||||
"name":"&#66;",
|
||||
"description":"B"
|
||||
},
|
||||
{
|
||||
"name":"&#67;",
|
||||
"description":"C"
|
||||
},
|
||||
{
|
||||
"name":"&#68;",
|
||||
"description":"D"
|
||||
},
|
||||
{
|
||||
"name":"&#69;",
|
||||
"description":"E"
|
||||
},
|
||||
{
|
||||
"name":"&#70;",
|
||||
"description":"F"
|
||||
},
|
||||
{
|
||||
"name":"&#71;",
|
||||
"description":"G"
|
||||
},
|
||||
{
|
||||
"name":"&#72;",
|
||||
"description":"H"
|
||||
},
|
||||
{
|
||||
"name":"&#73;",
|
||||
"description":"I"
|
||||
},
|
||||
{
|
||||
"name":"&#74;",
|
||||
"description":"J"
|
||||
},
|
||||
{
|
||||
"name":"&#75;",
|
||||
"description":"K"
|
||||
},
|
||||
{
|
||||
"name":"&#76;",
|
||||
"description":"L"
|
||||
},
|
||||
{
|
||||
"name":"&#77;",
|
||||
"description":"M"
|
||||
},
|
||||
{
|
||||
"name":"&#78;",
|
||||
"description":"N"
|
||||
},
|
||||
{
|
||||
"name":"&#79;",
|
||||
"description":"O"
|
||||
},
|
||||
{
|
||||
"name":"&#80;",
|
||||
"description":"P"
|
||||
},
|
||||
{
|
||||
"name":"&#81;",
|
||||
"description":"Q"
|
||||
},
|
||||
{
|
||||
"name":"&#82;",
|
||||
"description":"R"
|
||||
},
|
||||
{
|
||||
"name":"&#83;",
|
||||
"description":"S"
|
||||
},
|
||||
{
|
||||
"name":"&#84;",
|
||||
"description":"T"
|
||||
},
|
||||
{
|
||||
"name":"&#85;",
|
||||
"description":"U"
|
||||
},
|
||||
{
|
||||
"name":"&#86;",
|
||||
"description":"V"
|
||||
},
|
||||
{
|
||||
"name":"&#87;",
|
||||
"description":"W"
|
||||
},
|
||||
{
|
||||
"name":"&#88;",
|
||||
"description":"X"
|
||||
},
|
||||
{
|
||||
"name":"&#89;",
|
||||
"description":"Y"
|
||||
},
|
||||
{
|
||||
"name":"&#90;",
|
||||
"description":"Z"
|
||||
},
|
||||
{
|
||||
"name":"&#91;",
|
||||
"description":"opening bracket"
|
||||
},
|
||||
{
|
||||
"name":"&#92;",
|
||||
"description":"backslash"
|
||||
},
|
||||
{
|
||||
"name":"&#93;",
|
||||
"description":"closing bracket"
|
||||
},
|
||||
{
|
||||
"name":"&#94;",
|
||||
"description":"caret - circumflex"
|
||||
},
|
||||
{
|
||||
"name":"&#95;",
|
||||
"description":"underscore"
|
||||
},
|
||||
|
||||
{
|
||||
"name":"&#96;",
|
||||
"description":"grave accent"
|
||||
},
|
||||
{
|
||||
"name":"&#97;",
|
||||
"description":"a"
|
||||
},
|
||||
{
|
||||
"name":"&#98;",
|
||||
"description":"b"
|
||||
},
|
||||
{
|
||||
"name":"&#99;",
|
||||
"description":"c"
|
||||
},
|
||||
{
|
||||
"name":"&#100;",
|
||||
"description":"d"
|
||||
},
|
||||
{
|
||||
"name":"&#101;",
|
||||
"description":"e"
|
||||
},
|
||||
{
|
||||
"name":"&#102;",
|
||||
"description":"f"
|
||||
},
|
||||
{
|
||||
"name":"&#103;",
|
||||
"description":"g"
|
||||
},
|
||||
{
|
||||
"name":"&#104;",
|
||||
"description":"h"
|
||||
},
|
||||
{
|
||||
"name":"&#105;",
|
||||
"description":"i"
|
||||
},
|
||||
{
|
||||
"name":"&#106;",
|
||||
"description":"j"
|
||||
},
|
||||
{
|
||||
"name":"&#107;",
|
||||
"description":"k"
|
||||
},
|
||||
{
|
||||
"name":"&#108;",
|
||||
"description":"l"
|
||||
},
|
||||
{
|
||||
"name":"&#109;",
|
||||
"description":"m"
|
||||
},
|
||||
{
|
||||
"name":"&#110;",
|
||||
"description":"n"
|
||||
},
|
||||
{
|
||||
"name":"&#111;",
|
||||
"description":"o"
|
||||
},
|
||||
{
|
||||
"name":"&#112;",
|
||||
"description":"p"
|
||||
},
|
||||
{
|
||||
"name":"&#113;",
|
||||
"description":"q"
|
||||
},
|
||||
{
|
||||
"name":"&#114;",
|
||||
"description":"r"
|
||||
},
|
||||
{
|
||||
"name":"&#115;",
|
||||
"description":"s"
|
||||
},
|
||||
{
|
||||
"name":"&#116;",
|
||||
"description":"t"
|
||||
},
|
||||
{
|
||||
"name":"&#117;",
|
||||
"description":"u"
|
||||
},
|
||||
{
|
||||
"name":"&#118;",
|
||||
"description":"v"
|
||||
},
|
||||
{
|
||||
"name":"&#119;",
|
||||
"description":"w"
|
||||
},
|
||||
{
|
||||
"name":"&#120;",
|
||||
"description":"x"
|
||||
},
|
||||
{
|
||||
"name":"&#121;",
|
||||
"description":"y"
|
||||
},
|
||||
{
|
||||
"name":"&#122;",
|
||||
"description":"z"
|
||||
},
|
||||
{
|
||||
"name":"&#123;",
|
||||
"description":"opening brace"
|
||||
},
|
||||
{
|
||||
"name":"&#124;",
|
||||
"description":"vertical bar"
|
||||
},
|
||||
{
|
||||
"name":"&#125;",
|
||||
"description":"closing brace"
|
||||
},
|
||||
{
|
||||
"name":"&#126;",
|
||||
"description":"equivalency sign - tilde"
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user