talkatu/talkatu

Fix URL targets in markdown buffers

16 months ago, Elliott Sales de Andrade
49b6af8df5de
Fix URL targets in markdown buffers

Testing Done:
Opened About window in Pidgin, and links showed the correct cursor and tooltip.

Reviewed at https://reviews.imfreedom.org/r/2190/
###############################################################################
# Variables
###############################################################################
sources = [
'talkatudemo.c',
'talkatudemowindow.c',
'talkatudemowindow.h',
]
subdir('data')
###############################################################################
# Demo program
###############################################################################
talkatudemo = executable('talkatu-demo',
sources,
talkatudemo_resources,
c_args : ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Talkatu-Demo"'],
dependencies: [GLIB, GTK4, talkatu_dep],
include_directories : top_srcdir,
install: get_option('install-demo'),
)
if get_option('help2man')
custom_target('talkatu-demo.1',
command : [HELP2MAN,
'--name=Talkatu Demo', '--section=1',
'--help-option=--help-all', '--no-info',
'--output', '@OUTPUT@',
talkatudemo],
output : 'talkatu-demo.1',
install : get_option('install-demo'),
install_dir : get_option('mandir') / 'man1')
endif