mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
draft gemtext route
This commit is contained in:
parent
af6b1efe32
commit
a73bb3aea6
8 changed files with 118 additions and 9 deletions
21
src/app/browser/main/tab/page/content/text/gemini.cpp
Normal file
21
src/app/browser/main/tab/page/content/text/gemini.cpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#include "gemini.hpp"
|
||||
|
||||
using namespace app::browser::main::tab::page::content::text;
|
||||
|
||||
Gemini::Gemini(
|
||||
const Glib::ustring & gemtext
|
||||
) {
|
||||
set_wrap(
|
||||
true
|
||||
);
|
||||
|
||||
set_selectable(
|
||||
true
|
||||
);
|
||||
|
||||
set_markup(
|
||||
gemtext // @TODO
|
||||
);
|
||||
}
|
||||
|
||||
Gemini::~Gemini() = default;
|
||||
Loading…
Add table
Add a link
Reference in a new issue