Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/makhosi6/bubble-mssg
https://github.com/makhosi6/bubble-mssg
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/makhosi6/bubble-mssg
- Owner: makhosi6
- Created: 2020-03-03T12:26:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T22:46:38.000Z (over 4 years ago)
- Last Synced: 2024-11-08T20:12:09.571Z (about 2 months ago)
- Language: CSS
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basics of Markdown
Markdown is the most popular markup language that can be used to format documents. It can be used to create *websites*,*ebooks*,*email*,*chats in discussions forums*.## Topics
1. ParagraphsMD expects a full line space to show texts in a different line else it joins text in the same line.
2. Text decorationsMD can write **bold** texts, ~~italiic~~ *italic* texts
3. Headings
No of #'s represent the type of heading. Github will automatically add id's to headings, so the text will be automatically linked.
## This is h2
### This is h3
4. Links[My Github](https://github.com/bhupendra1011 "all repos") account.[Bhupendra][1] github repo.
5. Images
Images can be used just like links. ![Alt txt](img url)!["cat Img"](http://placekitten.com/200/200)
Thumbnails images can also be used which links to larger image
[](http://placekitten.com/200/200)6. Ordered and Unordered Lists
Coding Best Practices:
* Keep code DRY
* Writing Unit Test cases
* Checking cross-browser supportSteps to merge branch:
1. Create a branch from feature
1. commit your changes
1. push your changes
1. raise a pull request7. Code Blocks
This is super helpful when posting any code snippet
```js
const fn = () => alert("some fn");
``````css
.hide {
display:none
}
```Also can show code difference
```diff
var x = 10;
- const counter = 0;
+ let counter = 0
```8. Tables
Tables can be generated with headings and text alignment option
|Stocks|Price|
|:-----:|------:|
|TCS|230|
|YES Bank|500|Cool Tips
* [Grammarly](https://marketplace.visualstudio.com/items?itemName=znck.grammarly) extension can eliminate typo and grammar mistakes
* [ScreenTOGif](https://www.screentogif.com/) to record videos in GIF format
* Upload GIF's to [giphy](https://giphy.com/) to embed them into blog posts.
* [Stackedit](https://stackedit.io/) for Markdown Editing in Browser.