#include "NotesManager.h"
#include "ImGuiToaster.h"
#include <fstream>
#include <sstream>
#include <random>
#include <iomanip>
#include <algorithm>
#include <cctype>
Go to the source code of this file.
|
| using | Clock = std::chrono::system_clock |
| |
◆ Clock
| using Clock = std::chrono::system_clock |
◆ isMarkdownExt()
| static bool isMarkdownExt |
( |
const std::filesystem::path & | p | ) |
|
|
static |
Definition at line 13 of file NotesManager.cpp.
14{
15 auto ext = p.extension().string();
16 std::transform(ext.begin(), ext.end(), ext.begin(), ::tolower);
17 return (ext == ".md" || ext == ".markdown");
18}