mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
12 lines
194 B
C++
12 lines
194 B
C++
|
#include "Manager.h"
|
||
|
|
||
|
#include <QTextDocumentFragment>
|
||
|
|
||
|
#include "Utils.h"
|
||
|
|
||
|
QString
|
||
|
NotificationsManager::formatNotification(const QString &text)
|
||
|
{
|
||
|
return utils::markdownToHtml(text);
|
||
|
}
|