From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: E Sabof Newsgroups: gmane.emacs.help Subject: decoding html char codes Date: Mon, 30 Dec 2013 23:47:05 +0000 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1388447233 4548 80.91.229.3 (30 Dec 2013 23:47:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Dec 2013 23:47:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Dec 31 00:47:20 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VxmYJ-0004vY-Ac for geh-help-gnu-emacs@m.gmane.org; Tue, 31 Dec 2013 00:47:19 +0100 Original-Received: from localhost ([::1]:60118 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VxmYI-0000VL-Vs for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Dec 2013 18:47:18 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49251) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VxmY8-0000VE-39 for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 18:47:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VxmY6-0000kg-4p for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 18:47:08 -0500 Original-Received: from mail-qe0-x229.google.com ([2607:f8b0:400d:c02::229]:60489) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VxmY6-0000kZ-0Q for help-gnu-emacs@gnu.org; Mon, 30 Dec 2013 18:47:06 -0500 Original-Received: by mail-qe0-f41.google.com with SMTP id gh4so12277133qeb.0 for ; Mon, 30 Dec 2013 15:47:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=rDH2fha0f81fZHXABXl+EE78meezFK9VAM0ST3QHQwQ=; b=X3ciLrPesAMUFB8J/kF7YMGzl4XCCtVkGxrUJhAhyJDFkyueevvxikpWbs1GCZrPpT P0CsdsDlPxza7x8uSw8AvAPCEokUj+i97h8riMuwfc82Ne8OzNP8JTUC9ErvVpbaN52Z ckeeqHRQmOAX75/MGkvD+zQM29blW7eOjhNlZDtgZXjWerKEtGZ0XE9sNwv8G9WKrYIC 2UgNxFwygoI6j56geb41zrpzvfcS7AAq0bNnXlBPRYurUsaBhsmAcW8eXstKNN+JqGNO SoKkLCXGQGzJna+mvbI4to3zpKSMMW2cvhlhEsaqWM0zdNixSpQVKctED3/mcmMgT+YN zC+Q== X-Received: by 10.49.104.210 with SMTP id gg18mr114062955qeb.54.1388447225293; Mon, 30 Dec 2013 15:47:05 -0800 (PST) Original-Received: by 10.96.157.41 with HTTP; Mon, 30 Dec 2013 15:47:05 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c02::229 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:95210 Archived-At: On a farily regular basis, I need to convert strings like this: <b>foo & bar</b> to this: foo & bar I have an ad-hoc dictionary for doing such translations. However emacs seems to be shipped with at least 2. One located in etc/nxml/ and another in lisp/leim/quail/sgml-input.el. Does anyone know through which APIs can these dictionaries be accessed? Evgeni