mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00

This works by hooking into the change notifications from the TextEditor widget and parsing the document content as markdown, and generating an HTML document from it which is displayed using LibWeb. This will make it a bit easier to write man pages! :^)
9 lines
170 B
Makefile
Executable file
9 lines
170 B
Makefile
Executable file
OBJS = \
|
|
TextEditorWidget.o \
|
|
main.o
|
|
|
|
PROGRAM = TextEditor
|
|
|
|
LIB_DEPS = Web Markdown GUI Gfx VT Protocol IPC Thread Pthread Core JS
|
|
|
|
include ../../Makefile.common
|