mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
11 lines
266 B
C++
11 lines
266 B
C++
#include <PdfDraw/PdfDraw.h>
|
|
#include <RichText/RichText.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
String p = GetHomeDirFile("pdf.pdf");
|
|
SaveFile(p, Pdf(ParseQTF("This is some [^http://www.ultimatepp.org/forums^ LINK]!!!")));
|
|
LaunchWebBrowser(p);
|
|
}
|