Word to Markup
Standards to create a word file to use a markup file.
- Use headers not bold.
Bolded text is not a header. The text below is bolded:
**Minutes of the Meeting**
**Date:** October 3, 2024
**Discussion Points:**
Modified for docusarus
---
last_update:
date: 10/04/2024
author: Melissa
tags: [GQC India, Meeting]
---
# Minutes of the Meeting 10/03/2024
**Discussion Points:**
Markdown there should be a single header at the top of the document. There can only be 1 Header level 1 in the document it should be treated as the title of the document.
If you use headers and subheader then that level of headers and sub-headers show up in the file.
- Remember the first level of headers will be the title so only use one of the top level header, the rest can be used as many times as you want.
# Header Level 1 aka Tittle
## Header Level 2
### Header Level 3
### Header Level 4Make your headers unique.
- If you do not make your headers unique in a document you will throw errors during compiling.
Bad markdown using Description twice will cause errors.
# Title of page
## Subheading 1
### Description
## Subheading 2
### DescriptionThe markdown below will not cause errors.
# Title of page
## Subheading 1
### Subheader 1 Description
## Subheading 2
### Subheader 2 Description
Detailed instrutions for Word to Markdown.
- Go to https://word2md.com/
- There is a button Choose file. Click on it. It will open a dialogue box . Navigate to the word file you want to turn into a Markdown file.
- If it doesn't automatically render, then click the submit button.
- After that you will have a page with 2 primary sections, the Markdown, on the left and what it will look like Rendered on the right.
- Above the Markdown and Rendered sections there is a button that says copy markdown to clipboard. Click on it.
- Open Visual Studio Code.
- Navigate to an appropriate folder.
- Add a new file with the name of the Word file and the .md extension.
- Paste the clipboard text into the Markdown file.
- Word to markdown is not going to give you good pictures so you can just take them out.
- If you need the pictures then you need to click on the images and save them as .png files from the word document.
- Right click on the image you want to save.
- Pick Save as picture.
- Save the file as a .png with a meaningful name.
- Then you can add the pictures manually. Just put the pictures in a subfolder called images. Then add them to your read me in this format.

- If you need the pictures then you need to click on the images and save them as .png files from the word document.
- Remember to check your results as you go. And that this works best on simple documents that use Word style Headers.