Changes between Initial Version and Version 1 of Documentatie/Ontwikkelaar/Procedures/ApiDocumentatie
- Timestamp:
- 07/03/18 08:40:01 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentatie/Ontwikkelaar/Procedures/ApiDocumentatie
v1 v1 1 = API-documentatie maken = 2 3 Een paar grep commando's kunnen helpen bij het maken van de API-documentatie. Een gesorteerde lijst met route declaraties: 4 {{{ 5 grep -h -r --include="*.cs" "api/" . | sort | uniq > api.txt 6 }}} 7 8 Route declaraties en een regel die daaraan vooraf gaat: 9 {{{ 10 grep -h -r --include="*.cs" --before-context=1 "api/" . > api.txt 11 }}} 12