⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html.c

📁 elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, elinks也是gentoo安装过程中默认使用的浏览器, 这是elinks源代码
💻 C
字号:
/* HTML SGML info */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "elinks.h"#include "dom/sgml/html/html.h"#include "dom/sgml/sgml.h"#define HTML_(node, name, id)		SGML_NODE_INFO(HTML, node, name, id)#define HTM2_(node, name, str, id)	SGML_NODE_INF2(HTML, node, name, str, id)#undef VERSIONstatic struct sgml_node_info html_attributes[HTML_ATTRIBUTES] = {	SGML_NODE_HEAD(HTML, ATTRIBUTE),#include "dom/sgml/html/attribute.inc"};static struct sgml_node_info html_elements[HTML_ELEMENTS] = {	SGML_NODE_HEAD(HTML, ELEMENT),#include "dom/sgml/html/element.inc"};struct sgml_info sgml_html_info = {	SGML_DOCTYPE_HTML,	html_attributes,	html_elements,};

⌨️ 快捷键说明

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