-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmake.do
More file actions
53 lines (40 loc) · 2.13 KB
/
make.do
File metadata and controls
53 lines (40 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// the 'make.do' file is automatically created by 'github' package.
// execute the code below to generate the package installation files.
// DO NOT FORGET to update the version of the package, if changed!
// for more information visit http://github.com/haghish/github
// generating the package installation files
make echo, replace toc pkg version(1.0.0) ///
license("MIT") ///
author(E. F. Haghish) ///
affiliation(University of Goettingen) ///
email(haghish@med.uni-goettingen.de) ///
url("https://github.com/haghish") ///
title("displays the given text") ///
description("a program that displays the given string") ///
install("echo.ado;echo.sthlp") ///
iancillary("") ///
// generating the Stata help file
markdoc "echo.ado" , mini export(sthlp) replace
// generating the Markdown file for GitHub wiki
markdoc "echo.ado" , mini export(md) replace
// generating a HTML package vignette to be hosted elsewhere on the internet
markdoc "echo.ado" , mini export(html) replace style("simple")
/***
Package Vignette
----------------
The repository includes the vignette.do file for generating
a package vignette. Here, two vignettes are generated using
the light-weight mini engine and a full installation of
markdoc:
***/
// generating HTML, using MINI engine
markdoc "vignette_wiki.do", mini export(html) replace master ///
title("ECHO package vignette")
// generating HTML, using MINI engine
markdoc "vignette_wiki.do", mini export(md) replace master
// generating LaTeX, using full installation of markdoc
markdoc "vignette.do", export(tex) toc replace master ///
title("ECHO package vignette") ///
author("E. F. Haghish") ///
affiliation("University of Goettingen") ///
address("haghish@med.uni-goettingen.de")