Source: js/library/html_characters.js

/*
# ***** BEGIN LICENSE BLOCK *****
# This file is part of the PiWi Framework, an apen source PHP/JavaScript library by Les Ateliers Pierrot
# Copyright (c) 2010 Pierre Cassat and contributors
#
# <http://www.ateliers-pierrot.fr> - <contact@ateliers-pierrot.fr>
#
# PiWi Library is a free software; you can redistribute it and/or modify it under the terms 
# of the GNU General Public License as published by the Free Software Foundation; either version 
# 3 of the License, or (at your option) any later version.
#
# PiWi Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with this program; 
# if not, write to the :
#     Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
# or see the page :
#    <http://www.opensource.org/licenses/gpl-3.0.html>
#
# Ce programme est un logiciel libre distribué sous licence GNU/GPL.
#
# ***** END LICENSE BLOCK ***** */


/**
 * HTML caractères
 */
var html_characters = { 
    '\300' : 'À',

    '\301' : 'Á',

    '\302' : 'Â',

    '\303' : 'Ã',

    '\304' : 'Ä',

    '\305' : 'Å',

    '\306' : 'Æ',

    '\307' : 'Ç',

    '\310' : 'È',

    '\311' : 'É',

    '\312' : 'Ê',

    '\313' : 'Ë',

    '\314' : 'Ì',

    '\315' : 'Í',

    '\316' : 'Î',

    '\317' : 'Ï',

    '\320' : 'Ð',

    '\321' : 'Ñ',

    '\322' : 'Ò',

    '\323' : 'Ó',

    '\324' : 'Ô',

    '\325' : 'Õ',

    '\326' : 'Ö',

    '\330' : 'Ø',

    '\331' : 'Ù',

    '\332' : 'Ú',

    '\333' : 'Û',

    '\334' : 'Ü',

    '\335' : 'Ý',

    '\336' : 'Þ',

    '\337' : 'ß',

    '\340' : 'à',

    '\341' : 'á',

    '\342' : 'â',

    '\343' : 'ã',

    '\344' : 'ä',

    '\345' : 'å',

    '\346' : 'æ',

    '\347' : 'ç',

    '\350' : 'è',

    '\351' : 'é',

    '\352' : 'ê',

    '\353' : 'ë',

    '\354' : 'ì',

    '\355' : 'í',

    '\356' : 'î',

    '\357' : 'ï',

    '\360' : 'ð',

    '\361' : 'ñ',

    '\362' : 'ò',

    '\363' : 'ó',

    '\364' : 'ô',

    '\365' : 'õ',

    '\366' : 'ö',

    '\370' : 'ø',

    '\371' : 'ù',

    '\372' : 'ú',

    '\373' : 'û',

    '\374' : 'ü',

    '\375' : 'ý',

    '\376' : 'þ',

    '\377' : 'ÿ'
};

// Endfile