Use this to make your Readme / Markdowns look good

Search for a command to run...

No comments yet. Be the first to comment.
In this article, we will learn how we can convert the uploaded image to NodeJS Express Server to WebP image. Before we dive into code first let's understand Why it's a good idea to convert the image to WebP, and what are the Advantages of it? Let's s...

Hello there, Today I am presenting you some of the Javascript Interview questions, which are important, so let's start it. Scope The Scope is a code block in which values are accessible, let's understand it with an example. function myFunction() { ...

Hello there, in this article I'm going to share JavaScript Array Methods. Not only I will share the methods and usage, but you will find it very useful in practical usage as well. So let's explore them one by one. One last thing to say before we sta...

Nowadays TailwindCSS + CSS combo is 🔥, and I can say now, that it's production ready 🎉. Read further to Get started with Tailwind CSS, Let's go. TailwindCSS is a different UI library, imagine it as a stylesheet with a bunch of pre-written CSS class...

Today you will learn about Flexbox. Flexbox nowadays is used so much that you can't ignore it. I love the Flex system in CSS. they give so much control to position elements on the screen. so in this entire reading, we will see such a use case. Let's...

This article is not only for beginners but intermediates can read too, to make use of some markdown tags, that will make your Readme professional.
headings are very useful for not only styling purposes, these are actually used by the Search Engines like GitHub, Google, etc.
in HTML we have headings from H1 to H6, the same way, we've headings in the Markdown. to use it start with one hash (#) with space and provide the heading title.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
**bold text**
_italic text_
Adding a link is very simple, see the format for that.
[link name](https://example.com)
it's similar to adding a link, you just need to put ! before the link format.

you can also use <img /> tag to add an image, just copy that tag from your HTML, and it will work.
list are very simple, in markdown we can create, ordered list & unordered list, here is the format for that.
- list item 1
- list item 2
- list item 3
1. item 1
2. item 2
3. item 3
if you want to show expandable content in markdown here is format for that. it's not supported by all markdowns, but supported in GitHub.
<details>
<summary> write summary here </summary>
more details here
</details>
you can add your code blocks in markdown, it's better to use code block, instead of images of your code in markdown.
```javascript
console.log("this is the code");
```