Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 :)
- Host: GitHub
- URL: https://github.com/rootz491/rm-rf
- Owner: rootz491
- Created: 2021-08-04T14:34:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T03:15:55.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T19:03:54.044Z (8 months ago)
- Topics: blog, express, mern-project, mongodb, nodejs, reactjs, webapp
- Language: JavaScript
- Homepage: https://rmrf.herokuapp.com
- Size: 5.51 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
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 :)