1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00
serenity/Applications/TextEditor/Makefile
Andreas Kling 5eaa7ff406 TextEditor: Add live preview when editing markdown :^)
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! :^)
2020-04-28 21:46:43 +02:00

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