maddy VS palpatine

Compare maddy vs palpatine and see what are their differences.

maddy

C++ Markdown to HTML header-only parser library (by progsource)

palpatine

⚡Darth sidious does static site generator with unlimited power! (by batunpc)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
maddy palpatine
3 17
186 16
- -
7.0 10.0
4 months ago over 1 year ago
C++ C++
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

maddy

Posts with mentions or reviews of maddy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-11.
  • OSD600 Lab 8
    3 projects | dev.to | 11 Nov 2022
    Since I offloaded my markdown parsing to maddy, I did not test for it because it was not my own code. As a result, it was difficult to find parts that I could test. I mostly created my test cases for end to end testing. Since the number of things to test for is always numerous, I ended up finding a few things I could test for. But, I definitely am not satisfied with the number of tests I currently have and will be adding more in the future.
  • A good code thief
    7 projects | dev.to | 26 Oct 2022
    Across all the JavaScript-based SSGs, palpatine is developed from the ground up using C++ and CMake as the build system. As the developer and maintainer of palpatine my main concern is to make it lightning fast compared to others. Currently, palpatine1.5 can generate a static site in less than 1 second. I've also made sure that it is easy to use, with a simple command line interface. The documentation is also precise and easy to follow. However, it is lacking one of the core features, supporting markdown files fully. I've been working on this feature for the past few days and I found a header-only Markdown parser library maddy. But it seems that it has been more than a year since the last commit was made to the library. I'm not sure if it is still being maintained. CMake was quite upset about how outdated it was.
  • OSD600 Lab 6
    1 project | dev.to | 24 Oct 2022
    Taking inspiration from Docusaurus, I added full markdown parsing support to my SSG. I chose to add this because it was a core component of my SSG that remained incomplete. Instead of adding a nice-to-have feature, I figured it would be best to complete the core functionality of my SSG first. Instead of coding my own markdown parsing, it was much easier to simply use a markdown parsing library which already existed. I did this by using a maddy, a C++ markdown parsing library. The process of using the library was very straightforward, although calling its methods did noticeably slow down the html generation. After verifying that it worked with my SSG, I removed my initial implementation of markdown parsing.

palpatine

Posts with mentions or reviews of palpatine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-04.
  • December goals
    5 projects | dev.to | 4 Dec 2022
    I have been working on building my static site generator palpatine for the last two months. However, I have not had the chance yet to package it up to create my first release yet. When I attempted to package it up a few days ago, I ended up with a lot of errors and bugs that would require lots of time to debug. I plan on sitting with it next week again.
  • Makefiles can be helpful in your CI Workflow
    1 project | dev.to | 30 Nov 2022
    While developing palpatine, I used Makefile to automate the process of building and running the project.
  • The perfect open-sourcer does not exist
    5 projects | dev.to | 24 Nov 2022
    One of the personal projects I love developing is palpatine. I blogged about it here and I am constantly adding new features to it! So far it has reached 5 starts and keeps growing with the help of the open-source community.
  • C++ unit testing with Catch2 🧪👨‍🔬
    2 projects | dev.to | 15 Nov 2022
    Writing unit tests for my static site generator - palpatine, taught me an entirely new testing framework called Catch2. For my Hacktoberfest pull request this year I had done a unit testing contribution for a repository and I am currently working on building a microservice for my cloud computing class which requires us to use Jest for JavaScript unit testing. So, I can say that I have some experience with unit testing and continuing to develop my skills in it.
  • Static analysis tooling with CMake
    1 project | dev.to | 5 Nov 2022
    See the directory called cmake in the root directory of palpatine. Having cmake modules within the directory cmake is commonly used, the purpose of doing is to include() custom CMake functions to be used later in the project.
  • Easter eggs in Hacktoberfest 🪺
    3 projects | dev.to | 30 Oct 2022
    I have been developing a CLI tool called palpatine for a while now. It is a static site generator (SSG) written in C++ and still under development, ready for the support of the community in GitHub. This Hacktoberfest, I experienced the role of a contributor in open source but in the next Hacktoberfest, I will be participating as a maintainer of palpatine!
  • Unit testing like a Hacker
    6 projects | dev.to | 28 Oct 2022
    Ensuring everything is working as intended makes sense in principle, for example, I currently am developing a static site generator in cpp, palpatine, and as I develop it I stress about writing unit tests for it. Soon enough whenever a bug occurs I will be writing unit tests before debugging it. While writing unit tests though, I need to keep in mind that they won't stick around forever, my ssg tool is rapidly evolving; refactoring, adding new features, fixing bugs and shipping new releases day by day. That said, the unit tests will be obsolete soon enough and I might end up spending more time maintaining unit tests than actually developing the tool. Thus my philosophy at writing unit tests is to write them when they are actually needed, maybe when the consequences of breaking the code are high or when they are solving a specific problem.
  • A good code thief
    7 projects | dev.to | 26 Oct 2022
    While developing palpatine, I found myself browsing through the internet and getting inspired by how other static site generators (SSG) tackled my problems (i.e. supporting md files, stylesheets, exception handling). During this process, it was obvious to me that JavaScript dominated the field of static site generators, as almost all the options I looked at, were Javascript-based. Some of the interesting ones I found were: Docusaurus, Gatsby, Jekyll and Eleventy. They all have their unique features, competing with all other SSGs, and are constantly being maintained by the community in GitHub.   Docusaurus has a showcase page where you can see how other serious projects are using their tool, such as Jest website built with Docusaurus, it is inspiring when you see their pages professionally done. So I initially read their documentation on how to get started, very straightforward, and within minutes I was able to set up my docusaurus site! Key features to note are: easy to use, beautiful themes, precise documentation and customizable.
  • palpatine on time machine
    1 project | dev.to | 14 Oct 2022
    I ended up with new file FileHandler.h with the base class Handler and the classes MarkdownHandler , TextHandler which inherits the base class. They have virtual functions that are overridden in the derived classes, so that I can use the concept of polymorphism respectively.
  • Implementing Difficult Features While Learning New Things in C++
    4 projects | dev.to | 7 Oct 2022
    To add a new feature to palpatine which is an awesome static site generator written in C++ by Batuhan, I started by filing an issue. While I worked on his repo for adding this new feature, he worked on mine to add the same feature. Here are the detailed instructions for this week's lab. Batuhan also worked on my repo for adding the –config feature for my static site generator, rwar, written in Python. These are awesome repos to check out!

What are some alternatives?

When comparing maddy and palpatine you can also consider the following projects:

tree-sitter-html - HTML grammar for Tree-sitter

vscode-pets - Adds playful pets 🦀🐱🐶 in your VS Code window

forkleft - Fegeya Forkleft, C++ implementation of ~new generation~ mark-up language.

cve-bin-tool - The CVE Binary Tool helps you determine if your system includes known vulnerabilities. You can scan binaries for over 200 common, vulnerable components (openssl, libpng, libxml2, expat and others), or if you know the components used, you can get a list of known vulnerabilities associated with an SBOM or a list of components and versions.

argumentum - C++ command line parsing library

rwar - rwar - A simple bare-bones Static Site Generator (SSG) with minimal features. An SSG allows a user to generate a complete HTML website from raw data and files, without having to write out the HTML. Rwar is a command line tool that takes .txt files as input and generates .html files as output.

HMT - HMT is a multi-text editor which provides you to interact with HMTL, Markdown, Inline and Internal CSS with a one-click preview system...😲😲😲

termcolor - Termcolor is a header-only C++ library for printing colored messages to the terminal. Written just for fun with a help of the Force.

scope_guard - A modern C++ scope guard that is easy to use but hard to misuse.

argparse - Argument Parser for Modern C++

yaal - Yet another abstraction layer - a general purpose C++ library.

json_test_data - Test data for nlohmann/json