Markdown automation made simple using markdown-autodocs github action

Hi everyone!, I just released markdown-autodocs GitHub action which will help you to auto-document your markdown files. Please give a star for this repo if you find it useful.

Repo: https://github.com/dineshsonachalam/markdown-autodocs

Table…


This content originally appeared on DEV Community and was authored by Dinesh

Hi everyone!, I just released markdown-autodocs GitHub action which will help you to auto-document your markdown files. Please give a star for this repo if you find it useful.

Repo: https://github.com/dineshsonachalam/markdown-autodocs

Table of contents

Why markdown-autodocs?

To make your repo more appealing and useful you need to provide example code snippets in your README.md. Manually copy and pasting each code snippet in their respective places in your README would be inefficient and time-consuming.

This problem can be solved using markdown-autodocs a GitHub Action that automatically generates & updates markdown content (like your README.md) from external or remote files. You need to add markers in your README.md that will tell markdown-autodocs where to insert the code snippet.

Features

  • Code block: Insert code snippet in your markdown file from external or remote files.
  • JSON to HTML table: Insert HTML Table in your markdown file by converting JSON file contents to HTML table.
  • Github Workflow Artifacts table: Insert the Github workflow artifacts table in your markdown file by getting the latest artifacts for a workflow run.

Examples

CODE Block

Get code from an external file or URL and insert it in your markdown.

Options:

  • src: The relative path to the code to pull in, or the URL where the raw code lives

Get code from external file



Get code from remote file



JSON to HTML table

Get JSON contents from an external file and convert it into an HTML table and insert's it in your markdown.

Options:

  • src: The relative path to the JSON file to pull in.



Github Workflow Artifacts table

Get the list of the latest artifacts generated from a workflow run. Generates a workflow artifacts table consists of artifacts download and workflow URL in an HTML table and inserts it in your markdown file.



Example Repo which uses all the markdown-autodocs feature

Usage

Adding markdown-autodocs in your workflow

Add the following step at the end of your job, after other steps that might add or change files.

uses: dineshsonachalam/markdown-autodocs@v1.0.2

Extended example with all possible options available for this Action

- name: Markdown autodocs
- uses: dineshsonachalam/markdown-autodocs@v1.0.2
  with:
    # Optional, defaults to author of the commit that triggered the run
    commit_author: Author <actions@github.com>

    # Optional, defaults to "actions@github.com"
    commit_user_email: actions@github.com

    # Optional, but recommended
    # Defaults to "Apply automatic changes"
    commit_message: Apply automatic changes

    # Optional branch name where commit should be pushed to.
    # Defaults to the current branch.
    branch: feature-123

    # Optional output file paths, defaults to '[./README.md]'.
    output_file_paths: '[./README.md]'

    # Categories to automatically sync or transform its contents in the markdown files.
    # Defaults to '[code-block,json-to-html-table,workflow-artifact-table]'
    categories: '[code-block,json-to-html-table,workflow-artifact-table]'

Github Workflow Artifacts

Contributing

License

MIT © dineshsonachalam


This content originally appeared on DEV Community and was authored by Dinesh


Print Share Comment Cite Upload Translate Updates
APA

Dinesh | Sciencx (2021-06-28T01:29:05+00:00) Markdown automation made simple using markdown-autodocs github action. Retrieved from https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/

MLA
" » Markdown automation made simple using markdown-autodocs github action." Dinesh | Sciencx - Monday June 28, 2021, https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/
HARVARD
Dinesh | Sciencx Monday June 28, 2021 » Markdown automation made simple using markdown-autodocs github action., viewed ,<https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/>
VANCOUVER
Dinesh | Sciencx - » Markdown automation made simple using markdown-autodocs github action. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/
CHICAGO
" » Markdown automation made simple using markdown-autodocs github action." Dinesh | Sciencx - Accessed . https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/
IEEE
" » Markdown automation made simple using markdown-autodocs github action." Dinesh | Sciencx [Online]. Available: https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/. [Accessed: ]
rf:citation
» Markdown automation made simple using markdown-autodocs github action | Dinesh | Sciencx | https://www.scien.cx/2021/06/28/markdown-automation-made-simple-using-markdown-autodocs-github-action/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.