mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 22:09:52 +08:00
18 lines
239 B
C++
18 lines
239 B
C++
#ifndef HTMLUTILS_H
|
|
#define HTMLUTILS_H
|
|
|
|
#include <QString>
|
|
|
|
namespace vnotex
|
|
{
|
|
class HtmlUtils
|
|
{
|
|
public:
|
|
HtmlUtils() = delete;
|
|
|
|
static bool hasOnlyImgTag(const QString &p_html);
|
|
};
|
|
}
|
|
|
|
#endif // HTMLUTILS_H
|