Skip to content

Instantly share code, notes, and snippets.

@fabforms
Created January 24, 2025 18:14
Show Gist options
  • Save fabforms/ac0cc0a1277464011c8b897777e3dbed to your computer and use it in GitHub Desktop.
Save fabforms/ac0cc0a1277464011c8b897777e3dbed to your computer and use it in GitHub Desktop.
convert markdown to tailwind sample
Here's a sample `README.md` using all the essential Markdown tags, with placeholder text like "Lorem ipsum" (or "ipsum dipsum" as requested):
```markdown
# Project Title
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.
## Table of Contents
1. [Installation](#installation)
2. [Usage](#usage)
3. [Contributing](#contributing)
4. [License](#license)
## Installation
To install this project, follow these steps:
```bash
git clone https://github.com/username/project-name.git
cd project-name
npm install
```
## Usage
Once installed, you can run the project with the following command:
```bash
npm start
```
### Example
Here is a sample of the output when the project runs:
```json
{
"message": "Lorem ipsum dolor sit amet"
}
```
## Contributing
1. Fork the repository.
2. Create your feature branch (`git checkout -b feature-branch`).
3. Commit your changes (`git commit -am 'Add new feature'`).
4. Push to the branch (`git push origin feature-branch`).
5. Create a new Pull Request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
## Markdown Examples
### Heading 1
# Heading 1
### Heading 2
## Heading 2
### Heading 3
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
### Lists
- Item 1
- Item 2
- Sub-item 1
- Sub-item 2
#### Numbered List
1. First item
2. Second item
3. Third item
### Links
[GitHub](https://github.com)
[Google](https://www.google.com)
### Images
![Image Example](https://via.placeholder.com/150)
### Blockquote
> "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
### Code
Inline code: `npm install`
Code block:
```python
def hello_world():
print("Hello, world!")
```
### Tables
| Header 1 | Header 2 |
|----------|----------|
| Row 1, Col 1 | Row 1, Col 2 |
| Row 2, Col 1 | Row 2, Col 2 |
### Strong and Emphasis
**Bold Text**
*Italic Text*
***Bold and Italic Text***
### Horizontal Rule
---
### Task Lists
- [x] Task 1
- [ ] Task 2
- [ ] Task 3
### Strikethrough
~~This text is strikethrough~~
```
This README showcases the most common Markdown formatting, including headings, lists, code blocks, and various text styles. You can edit and expand upon it as needed for your project!
[covert markdown to tailwind](https://markdown-to-tailwind.netlify.app/)
@fabforms
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment