Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rootz491/rm-rf

Blog app blessed with bad frontend but great Backend :)
https://github.com/rootz491/rm-rf

blog express mern-project mongodb nodejs reactjs webapp

Last synced: about 2 months ago
JSON representation

Blog app blessed with bad frontend but great Backend :)

Awesome Lists containing this project

README

        

# blog app

# useful references

* using tailwind for styling coponents, so it overwrites browser default syling of element.
now im also using `marked` which generates HTML out of github flavoured markdown.
trouble is, this generated markdown's styling is overwriten by tailwind and ofc marked dont support tailwind type styling while generating HTML.

so there are two solutions,

1. reset tailwind for particular div or component. (involves sass and stuf)
blog: https://www.swyx.io/tailwind-unreset/

2. just use `` to render markdown.
iframes are independent of external styling and this is coolest!
so imma gonna go with this one :)