📄 htmldocument.cpp
字号:
// replace_all and strip_tags are taken from the book// "thinking in c++ volume 2" (bruce eckel)#include <sstream>#include <fstream>#include <iostream>#include <string>#include "HTMLDocument.h"using namespace std;#ifdef TESTint main() { // cout << "Expected output: text without tags" << endl; // HTMLDocument html("content/test"); // cout << "Output: " << html << endl; return 0;}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -