blob: 43807bfd7b353e591a5a677096e372f743f5695e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "markdown.h"
#include "resource.h"
namespace NYql::NDocs {
using TPages = THashMap<TString, TMarkdownPage>;
TPages ParsePages(TResourcesByRelativePath resources);
} // namespace NYql::NDocs
|