I have installed geany-1.38 and the markdown-plugin from Ubuntu-22.04's package repository.
The markdown preview does nothing, at first I thought there's some error with images or something. However, even the most trivial file produces no output.
On another computer, also running Ubuntu-22.04, I was using geany with markdown-preview regularly without any issues. The one major difference is that my current machine uses KDE, whereas the other one used Gnome; but this can't be the reason.
The screenshot below shows the file plus the preview along with the debug messages for good measure.
I see nothing that would give me some hints. The preview remains solidly grey.
![geanyError](https://github.com/geany/geany-plugins/assets/157142463/d04aeb96-957f-42d0-99ac-54f9777b9b48)
----
Here are the debug messages as text
```
18:16:48.995085: GLib-GIO DEBUG : _g_io_module_get_default: Found default implementation dconf (DConfSettingsBackend) for ‘gsettings-backend’
18:16:48.999775: GLib-GIO DEBUG : _g_io_module_get_default: Found default implementation gvfs (GDaemonVfs) for ‘gio-vfs’
18:16:49.020692: Geany INFO : Geany 1.38, de_AT.UTF-8
18:16:49.020706: Geany INFO : GTK 3.24.33, GLib 2.72.4
18:16:49.020737: Geany INFO : OS: Ubuntu 22.04.3 LTS (jammy)
18:16:49.020742: Geany INFO : System data dir: /usr/share/geany
18:16:49.020748: Geany INFO : User config dir: /home/gerhard/.config/geany
18:16:49.147635: Geany INFO : Loaded GTK+ CSS theme '/usr/share/geany/geany.css'
18:16:49.148233: Geany INFO : Loaded GTK+ CSS theme '/usr/share/geany/geany-3.20.css'
18:16:49.153394: Geany INFO : System plugin path: /usr/lib/x86_64-linux-gnu/geany
18:16:49.168380: Geany INFO : Added filetype JSON (64).
18:16:49.168424: Geany INFO : Added filetype Nim (65).
18:16:49.168431: Geany INFO : Added filetype Clojure (66).
18:16:49.168438: Geany INFO : Added filetype Swift (67).
18:16:49.168445: Geany INFO : Added filetype Meson (68).
18:16:49.168453: Geany INFO : Added filetype CUDA (69).
18:16:49.168460: Geany INFO : Added filetype Genie (70).
18:16:49.168466: Geany INFO : Added filetype Kotlin (71).
18:16:49.168473: Geany INFO : Added filetype TypeScript (72).
18:16:49.168479: Geany INFO : Added filetype Groovy (73).
18:16:49.168493: Geany INFO : Added filetype Arduino (74).
18:16:49.168500: Geany INFO : Added filetype Graphviz (75).
18:16:49.168506: Geany INFO : Added filetype Cython (76).
18:16:49.168589: Geany INFO : Added filetype Scala (77).
18:16:49.189604: Geany INFO : Loaded libvte from libvte-2.91.so.0
18:16:49.415967: Geany INFO : Loaded: /usr/lib/x86_64-linux-gnu/geany/markdown.so (Markdown)
18:16:49.429438: Geany INFO : /home/gerhard/myGitRepos/Gerhard404/DEM/ReadMe.md : Markdown (UTF-8)
18:16:49.559447: (null) DEBUG : Name com.canonical.AppMenu.Registrar does not exist on the session bus
```
That's the template.html file, that the plug-in uses. I have done nothing to it.
```
<html>
<head>
<style type="text/css">
body {
font-family: @@font_name@@;
font-size: @@font_point_size@@pt;
background-color: @@bg_color@@;
color: @@fg_color@@;
}
code {
font-family: @@code_font_name@@;
font-size: @@code_font_point_size@@pt;
}
</style>
</head>
<body>
@@markdown@@
</body>
</html>
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1302
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1302(a)github.com>