template.m

来自「M2HTML by itself generates an HTML docum」· M 代码 · 共 48 行

M
48
字号
function tpl = template(root,unknowns)%TEMPLATE HTML Template Toolbox Constructor%  TPL = TEMPLATE returns a template object using default values for the%  root path of the template files ('.') and for the way of handling unknown%  replacement fields (default is 'remove').%  TPL = TEMPLATE(ROOT) allows to specify the root path of the template files%  that will then be provided relative to this path.%  TPL = TEMPLATE(ROOT,UNKNOWNS) also allows to specify the strategy to apply%  to unkown fields. UNKNOWNS may be:%    * 'keep' to do nothing%    * 'remove' to remove all undefined fields%    * 'comment' to replace undefined fields by a warning HTML comment.%%  The template class allows you to keep your HTML code in some external %  files which are completely free of Matlab code, but contain replacement %  fields. The class provides you with functions which can fill in the %  replacement fields with arbitrary strings. These strings can become very %  large, e.g. entire tables.%  See the PHPLib: <http://www.sanisoft.com/phplib/manual/template.php>%  See also GET, SET, PARSE%  Copyright (C) 2003 Guillaume Flandin <Guillaume@artefact.tk>%  $Revision: 1.0 $Date: 2003/05/05 22:19:51 $error(nargchk(0,2,nargin));switch nargin	case 0		tpl = struct('root','.',...					 'file',{{}},...					 'handles',{{}},...					 'varkeys',{{}},...					 'varvals',{{}},...					 'unknowns','remove');		tpl = class(tpl,'template');	case 1		if isa(root,'template')			tpl = root;		else			tpl = template;			tpl = set(tpl,'root',root);		end	case 2		tpl = template;		tpl = set(tpl,'root',root);		tpl = set(tpl,'unknowns',unknowns);end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?