Skip to content

jonasbn/markdownlint-presentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Markdownlint Presentation

Collection of examples and notes for my Markdownlint presentation

Resources

markdownlint configuration

{
    "default": true
}

Basic configuration in JSON for markdownlint, enabling all rules

Using markdownlint-cli with Travis CI

language: node_js
node_js:
- '6'
install:
- npm install -g markdownlint-cli
script:
- markdownlint *.md ; markdownlint */*.md

Example lifted from: jonasbn: TIL (Today I Learned)

Example of staged builds:

language: node_js
node_js:
- '6'

before_install:
  - sudo apt-get install -y libxml2-utils

install:
   - npm install -g markdownlint-cli

jobs:
  include:
    - stage: "Documentation test"
      name: "Markdown test"
      script: markdownlint README.md
    - stage: "Product test"
      name: "XML/XSD test"
      script: xmllint --schema epp.xsd xml/*.xml

Example lifted from: DK Hostmaster: epp-xml-files

See the fine result at Travis CI

About

Collection of examples and notes for my Markdownlint presentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published