Skip to content

Commit bb4a800

Browse files
author
haghish
committed
3.7.0
1 parent 57b156d commit bb4a800

File tree

9 files changed

+627
-8
lines changed

9 files changed

+627
-8
lines changed

.gitignore

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
2+
private/MD.png
3+
4+
private/MD1.psd
5+
6+
private/MD2.psd
7+
8+
private/MD3.psd
9+
10+
Resources/markdoc_do.gv
11+
12+
Resources/markdoc_smcl.gv
13+
14+
Resources/markdoc_source.gv
15+
16+
private/Billrising_help_template.sthlp
17+
18+
private/dlg/child.dlg
19+
20+
private/dlg/d1.ado
21+
22+
private/dlg/d1.dlg
23+
24+
private/dlg/describe2.dlg
25+
26+
private/dlg/GetLevels.ado
27+
28+
private/dlg/ig.dlg
29+
30+
private/dlg/markdoc0.dlg
31+
32+
private/dlg/markdoc2.dlg
33+
34+
private/dlg/markdoc3.dlg
35+
36+
private/dlg/markdoc4.dlg
37+
38+
private/dlg/nw.dlg
39+
40+
private/dlg/wb.dlg
41+
42+
private/markdoc2.dlg
43+
44+
private/multi_window_dialogbox/markdoc_title.dlg
45+
46+
private/multi_window_dialogbox/markdoc.dlg
47+
48+
private/opencsv.do

Examples/Mathematics/example.html

-4
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,7 @@
8686

8787
</style>
8888
</head>
89-
<header>
90-
Testing Mathematical Notations in MarkDoc
91-
</header>
9289
<body>
93-
<p><span class="author">E. F. Haghish</span> <span class="date">21 Aug 2016</span></p>
9490
<p>Use a single &quot;$&quot; sign for writing inline mathematical notations. For example, <span class="math inline">\(f(x)=\sum_{n=0}^\infty\frac{f^{(n)}(a)}{n!}(x-a)^n\)</span> would be rendered inline with the text paragraph. Use double dollar signs &quot;$$&quot; for placing the notations on a separate lines:</p>
9591
<p><span class="math display">\[Y_i = \beta_0 + \beta_1 X_i + \epsilon_i\]</span></p>
9692
<ol style="list-style-type: decimal">
123 KB
Loading

markdoc.ado

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*** DO NOT EDIT THIS LINE -----------------------------------------------------
2-
Version: 3.6.9
2+
Version: 3.7.0
33
Title: markdoc
44
Description: a general-purpose literate programming package for Stata that
55
produces {it:dynamic analysis documents} and {it:package vignette documentation} in various formats
@@ -1163,6 +1163,9 @@ program markdoc
11631163
local input "`input'.do"
11641164
*local scriptfile 1 //define a scriptfile
11651165
local rundoc 1 //run rundoc
1166+
1167+
//allow rundoc get nested in the file
1168+
global rundoc "`input'"
11661169
}
11671170
else if (!index(lower("`input'"),".smcl")) {
11681171
if "`export'" == "slide" {

0 commit comments

Comments
 (0)