📄 xmerl_text.erl
字号:
%%% The contents of this file are subject to the Erlang Public License,%%% Version 1.0, (the "License"); you may not use this file except in%%% compliance with the License. You may obtain a copy of the License at%%% http://www.erlang.org/license/EPL1_0.txt%%%%%% Software distributed under the License is distributed on an "AS IS"%%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See%%% the License for the specific language governing rights and limitations%%% under the License.%%%%%% The Original Code is xmerl-0.6%%%%%% The Initial Developer of the Original Code is Ericsson Telecom%%% AB. Portions created by Ericsson are Copyright (C), 1998, Ericsson%%% Telecom AB. All Rights Reserved.%%%%%% Contributor(s): ______________________________________.%%%%%%----------------------------------------------------------------------%%% #0. BASIC INFORMATION%%%----------------------------------------------------------------------%%% @private%%% File: xmerl_xml.erl%%% Author : Richard Carlsson <richardc@csd.uu.se>%%% Description : Callback module for exporting as raw text.%%%-----------------------------------------------------------------------module(xmerl_text).-export(['#xml-inheritance#'/0]).-export(['#root#'/4, '#element#'/5, '#text#'/1]).-include("xmerl.hrl").'#xml-inheritance#'() -> [].%% The '#text#' function is called for every text segment.'#text#'(Text) -> Text.%% The '#root#' tag is called when the entire structure has been%% exported. It does not appear in the structure itself.'#root#'(Data, _Attrs, [], _E) -> Data.%% The '#element#' function is the default handler for XML elements.'#element#'(_Tag, Data, _Attrs, _Parents, _E) -> Data.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -