mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-10 05:33:50 +00:00
20 lines
525 B
C++
20 lines
525 B
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "iv/markdown/iv_markdown_parse.h"
|
|
|
|
namespace Iv::Markdown {
|
|
|
|
[[nodiscard]] ParseResult Failure(QString sourceName, QString error);
|
|
[[nodiscard]] MarkdownSourceValidationResult ValidationFailure(
|
|
QString sourceName,
|
|
QString error);
|
|
|
|
} // namespace Iv::Markdown
|