You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
6 years ago
|
# Markdown Table Generator
|
||
6 years ago
|
|
||
6 years ago
|
Create an application that will convert a regular table with data provided by the User (optionally) into a Makdown formated table.
|
||
6 years ago
|
|
||
|
## User Stories
|
||
|
|
||
6 years ago
|
- [ ] User can create an `HTML table` with a given number of **Rows** and **Columns**
|
||
|
- [ ] User can insert text in each cell of the `HTML table`
|
||
|
- [ ] User can generate a `Markdown formatted table` that will contain the data from the `HTML table`
|
||
|
- [ ] User can preview the `Markdown formatted table`
|
||
6 years ago
|
|
||
|
## Bonus features
|
||
|
|
||
6 years ago
|
- [ ] User can copy the `Markdown formatter table` to the clipboard by pressing a button
|
||
|
- [ ] User can insert a new **Row** or **Column** to a specified location
|
||
|
- [ ] User can delete a **Row** or a **Column** entirely
|
||
|
- [ ] User can align (to the _left_, _right_ or _center_) a **cell**, a **column**, a **row**, or the entire **table**
|
||
6 years ago
|
|
||
|
## Useful links and resources
|
||
|
|
||
6 years ago
|
- [Markdown Guide](https://www.markdownguide.org/)
|
||
|
- [How to Copy to Clipboard](https://www.w3schools.com/howto/howto_js_copy_clipboard.asp)
|
||
|
|
||
|
## Example project
|
||
|
|
||
|
- [Tables Generator / Markdown Tables](https://www.tablesgenerator.com/markdown_tables)
|