mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
20 lines
549 B
C++
20 lines
549 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include "core/string.h"
|
|
#include "core/containers/vector.h"
|
|
|
|
class Utils {
|
|
public:
|
|
static void newline_to_br(String *str);
|
|
//htmlspecialchars
|
|
|
|
static void markdown_to_html(String *str);
|
|
|
|
static String get_pagination(const String &base_url, const uint32_t max, const uint32_t current_index, const uint32_t max_visible_links = 10);
|
|
static String get_pagination_links(const String &base_url, const Vector<String> &links, const uint32_t current_index, const uint32_t max_visible_links = 10);
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif |