mdlinks-yuda
v1.1.0
Published
* [1. Preámbulo](#1-preámbulo) * [2. Resumen del proyecto](#2-resumen-del-proyecto) * [3. Objetivos de aprendizaje](#3-objetivos-de-aprendizaje) * [4. Consideraciones generales](#4-consideraciones-generales) * [5. Criterios de aceptación mínimos del p
Downloads
1
Readme
Markdown Links
Index
1. Proyect resume
The mdlinks-yuda library analyzes markdown files and depending on what the user requires, it will deliver statistical and validation information.
2. Installation
On the command line run this:
npm install mdlinks-yuda
3. Usage
Import the library with require()
const {mdLinks} = require('mdlinks-yuda');
4. Commands
mdlinks-yuda <path-to-file> [options]
Arguments
path
: Absolute or relative path to the file or directory.options
:validate
: Determines if you want to validate the links found.stats
: Obtains an output with general statistical information.
###Options
validate
$ mdlinks-yuda ./some/example.md --validate
href
: URL found.text
: Text that appeared inside the link.file
: Path of the file where the link was found.status
: HTTP response code.OK
: Fail message in case of failure or OK in case of success.
With validate:false
:
$ mdlinks-yuda ./some/example.md
href
: URL found.text
: Text that appeared inside the link.file
: Path of the file where the link was found.
If we pass the --stats
option the output will be a text with statistics
basics about the links.
$ mdlinks-yuda ./some/example.md --stats
Total: 3
Unique: 3
We can also combine --stats
and --validate
to get statistics that
need the validation results.
$ mdlinks-yuda ./some/example.md --stats --validate
Total: 3
Unique: 3
Broken: 1
5. Author
Daniela Nieto