Changes between Initial Version and Version 1 of Documentatie/Ontwikkelaar/Procedures/ApiDocumentatie


Ignore:
Timestamp:
07/03/18 08:40:01 (8 years ago)
Author:
henk
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentatie/Ontwikkelaar/Procedures/ApiDocumentatie

    v1 v1  
     1= API-documentatie maken = 
     2 
     3Een paar grep commando's kunnen helpen bij het maken van de API-documentatie. Een gesorteerde lijst met route declaraties: 
     4{{{ 
     5grep -h  -r --include="*.cs" "api/" . | sort | uniq > api.txt 
     6}}} 
     7 
     8Route declaraties en een regel die daaraan vooraf gaat: 
     9{{{ 
     10 grep -h  -r --include="*.cs" --before-context=1 "api/" . > api.txt 
     11}}} 
     12