File indexing completed on 2024-04-21 04:38:10

0001 /*
0002     SPDX-FileCopyrightText: 2018 Anton Anikin <anton@anikin.xyz>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVCLAZY_UTILS_H
0008 #define KDEVCLAZY_UTILS_H
0009 
0010 #include <QString>
0011 class QUrl;
0012 
0013 namespace Clazy
0014 {
0015 
0016 QString prettyPathName(const QUrl& path);
0017 
0018 QString markdown2html(const QByteArray& markdown);
0019 
0020 }
0021 
0022 #endif