html2md  v1.6.0
Simple and fast HTML to Markdown converter
Loading...
Searching...
No Matches
table.h
Go to the documentation of this file.
1// Copyright (c) Tim Gromeyer
2// Licensed under the MIT License - https://opensource.org/licenses/MIT
3
4#ifndef TABLE_H
5#define TABLE_H
6
7#include <string>
8
9[[nodiscard]] std::string formatMarkdownTable(const std::string &inputTable);
10
11#endif // TABLE_H
std::string formatMarkdownTable(const std::string &inputTable)