{"id":21379248,"url":"https://github.com/craigbarnes/showdown","last_synced_at":"2025-10-03T21:14:54.105Z","repository":{"id":7490897,"uuid":"8839939","full_name":"craigbarnes/showdown","owner":"craigbarnes","description":"Moved to https://gitlab.com/craigbarnes/showdown","archived":false,"fork":false,"pushed_at":"2022-04-10T06:11:39.000Z","size":263,"stargazers_count":58,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-05-14T21:01:06.457Z","etag":null,"topics":["flatpak","gtk","markdown","markdown-viewer","vala","viewer","webkit2gtk"],"latest_commit_sha":null,"homepage":"","language":"Vala","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/craigbarnes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-17T19:07:13.000Z","updated_at":"2022-11-18T22:02:15.000Z","dependencies_parsed_at":"2022-08-29T21:31:05.425Z","dependency_job_id":null,"html_url":"https://github.com/craigbarnes/showdown","commit_stats":null,"previous_names":[],"tags_count":5,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fshowdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fshowdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fshowdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/craigbarnes%2Fshowdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/craigbarnes","download_url":"https://codeload.github.com/craigbarnes/showdown/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225878144,"owners_count":17538405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flatpak","gtk","markdown","markdown-viewer","vala","viewer","webkit2gtk"],"created_at":"2024-11-22T10:18:12.552Z","updated_at":"2025-10-03T21:14:54.015Z","avatar_url":"https://github.com/craigbarnes.png","language":"Vala","funding_links":[],"categories":[],"sub_categories":[],"readme":"Project Status\n==============\n\n**Unmaintained**\n\nI've lost all interest in working on GTK projects and probably\nwon't be making any further updates to the showdown code.\n\nThe [CADT] development model is stronger than ever in the GNOME\necosystem and I no longer find it worth the effort to fix the\nconstant breakage it causes.\n\n- - -\n\nShowdown\n========\n\nShowdown is a simple [Markdown] viewer written in [Vala] and [GTK].\n\nFeatures\n--------\n\n* Minimalist default stylesheet.\n* Table of contents navigation.\n* Integrated search bar\n* User styles (`~/.config/showdown/stylesheet.css`)\n* User scripts (`~/.config/showdown/script.js`)\n\nScreenshot\n----------\n\n![Showdown screenshot](https://craigbarnes.bitbucket.io/img/showdown.png)\n\nBuilding\n--------\n\nTo build Showdown from source, first install the following runtime\ndependencies:\n\n* [GTK] (3.20+)\n* [GLib] (2.48+)\n* [WebKit2GTK] (2.8.4+)\n* [Discount] (2.1.7+)\n\n...and the following build dependencies:\n\n* [Vala]\n* [GNU Make] (3.81+)\n* `desktop-file-install` (from [desktop-file-utils])\n* `xmllint` (from [libxml2])\n\n...which are available via package manager on most Linux distros:\n\n    # Debian 8+/Ubuntu 15.04+:\n    sudo apt-get -y install valac gcc make libgtk-3-dev libwebkit2gtk-4.0-dev libmarkdown2-dev libxml2-utils\n\n    # Fedora 21+:\n    sudo dnf -y install vala gcc make webkitgtk4-devel libmarkdown-devel libxml2\n\n    # Arch Linux\n    sudo pacman --needed -Sy vala gcc make webkit2gtk discount libxml2\n\n...then download and extract the latest release tarball:\n\n    curl -LO https://craigbarnes.gitlab.io/dist/showdown/showdown-0.6.tar.gz\n    tar -xzf showdown-0.6.tar.gz\n    cd showdown-0.6/\n\n...and compile and install:\n\n    make \u0026\u0026 sudo make install\n\nPackaging\n---------\n\n**Variables:**\n\nThe makefile supports most common packaging conventions, such as the\n[`DESTDIR`] variable and various other [install path variables].\n\nExample usage:\n\n    make V=1\n    make install V=1 prefix=/usr DESTDIR=PKG\n\n**Post-install commands:**\n\nThe makefile automatically [updates][POSTINSTALL] the system icon and\nMIME type caches after installation, *unless* the `DESTDIR` variable is\nset.\n\nIf `DESTDIR` is set, it is assumed that the installation is being used\nfor packaging purposes, in which case the packager should use the\nequivalent, distro-provided macros/hooks instead. The icon and MIME\ntype caches should also be updated after *uninstallation*.\n\nLicense\n-------\n\nCopyright (C) 2015-2018 Craig Barnes\n\nThis program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU [General Public License version 3], as published\nby the Free Software Foundation.\n\nThis program is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General\nPublic License version 3 for more details.\n\n\n[CADT]: https://www.jwz.org/doc/cadt.html\n[General Public License version 3]: https://www.gnu.org/licenses/gpl-3.0.html\n[Markdown]: https://en.wikipedia.org/wiki/Markdown\n[Vala]: https://wiki.gnome.org/Projects/Vala\n[GTK]: https://www.gtk.org/\n[GLib]: https://developer.gnome.org/glib/\n[GNU Make]: https://www.gnu.org/software/make/\n[Discount]: http://www.pell.portland.or.us/~orc/Code/discount/\n[WebKit2GTK]: https://webkitgtk.org/\n[desktop-file-utils]: https://www.freedesktop.org/wiki/Software/desktop-file-utils/\n[libxml2]: http://www.xmlsoft.org/\n[`DESTDIR`]: https://www.gnu.org/prep/standards/html_node/DESTDIR.html\n[install path variables]: https://gitlab.com/craigbarnes/showdown/blob/master/GNUmakefile#L9-L15\n[POSTINSTALL]: https://gitlab.com/craigbarnes/showdown/blob/master/GNUmakefile#L21-25\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraigbarnes%2Fshowdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcraigbarnes%2Fshowdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcraigbarnes%2Fshowdown/lists"}