md suffix should be automatically added for validation
See original GitHub issueI am using Jekyll on my site and I want to have Semantic URLs.
For instance, I create FileLinks.md
, but the URL is without md
suffix: http://help.jabref.org/en/FileLinks
This confuses the validation:
Is it possible to tune the validation to also check for existance of an md
file?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:10 (5 by maintainers)
Top Results From Across the Web
protoc-gen-validate (PGV) - GitHub
This plugin adds support to protoc-generated code to validate such constraints. Developers import the PGV extension and annotate the messages and fields in ......
Read more >Working with Bibliographic Records
Overview and instructions for bibliographic record creation and management in the MD Editor.
Read more >Structured Product Labeling (SPL) Implementation Guide with ...
Implementation Guide with Validation Procedures ... the item reference that is assigned by the owner of the company prefix to create a unique...
Read more >Improving Consumer Understanding of Medical Text - NCBI
Improving Consumer Understanding of Medical Text: Development and Validation of a New SubSimplify Algorithm to Automatically Generate Term Explanations in ...
Read more >US Street Address API documentation - Smarty
(Need to validate a single address? ... For all addresses submitted freeform, the API will automatically employ a strict match output strategy.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Jelmerb, you need to add
Link Address Element
entry to map to convert no extension link text to file ref with.md
extension:^((?:.*[\\/])?[^\.\\/]+)$
$1.md
^(.+?)(?:\.md)$
$1
This will resolve links without
.md
extension to files with.md
extension and complete files with.md
extension to files without an extension.@vsch Thank you very much!