You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy/move your Word document(s) to a temporary folder.
Copy the createMarkdownFromWord.sh, cleanMarkdown.sh, prepend-frontmatter.sh, renameMarkdownFilesWithSpaces.sh, and main.sh scripts to the same folder.
Run the main.sh script.
Update the frontmatter in the markdown file(s) to your desired content. For example, update the title.
Copy the markdown file(s) from the temporary folder to your Hugo site's content\posts folder. In this repo's case:
cp *.md ../w2wdemo/content/posts/
Copy the images folder from the temporary folder to your Hugo site's static folder. In this repo's case:
cp images/ ../w2wdemo/static/ -r
Issue a hugo serve command in your hugo site folder to build the site.
Open your browser and navigate to your Hugo site's URL to test the new content. Typically, http://localhost:1313/.
After testing, commit and push your code to your remote repo (GitHub, GitLab, Bitbucket, etc.) to invoke a CI/CD pipeline to deploy your Hugo site to the hosting service/CDN of your choice.