Skip to content

Bump actions/checkout from 2 to 4 #24

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #24

Workflow file for this run

name: panvimdoc
on: [push]
jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v4
- uses: kdheepak/panvimdoc@main
with:
vimdoc: nvim-forge
# The following are all optional
pandoc: "README.md" # Input pandoc file
toc: true # Table of contents
description: "The Personal Software Development and Personal Knowledge Base Management Environment of Thomas Leon Highbaugh." # Project description used in title (if empty, uses neovim version and current date)
titledatepattern: "%Y %B %d" # Pattern for the date that used in the title
demojify: false # Strip emojis from the vimdoc
dedupsubheadings: true # Add heading to subheading anchor links to ensure that subheadings are unique
treesitter: true # Use treesitter for highlighting codeblocks
ignorerawblocks: true # Ignore raw html blocks in markdown when converting to vimdoc
docmapping: false # Use h4 headers as mapping docs
docmappingprojectname: true # Use project name in tag when writing mapping docs
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Auto generate docs"
branch: ${{ github.head_ref }}