-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyMarkdownHelp.jl
242 lines (171 loc) · 5.28 KB
/
MyMarkdownHelp.jl
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
### A Pluto.jl notebook ###
# v0.12.18
using Markdown
using InteractiveUtils
# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
macro bind(def, element)
quote
local el = $(esc(element))
global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : missing
el
end
end
# ╔═╡ e0e61a2a-5b42-11eb-3e21-a5af0c3ba8fb
begin
import Pkg
Pkg.add("InteractiveUtils")
using Interact
using Images
Pkg.add("WebIO")
using WebIO
end
# ╔═╡ 53e94c18-5684-11eb-21e9-01510c841f58
md"""
This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
"""
# ╔═╡ fc21549e-5683-11eb-07bf-51233c3f5e9b
md"""
## My Notebook $~~~~~~~$ Jan 13 20201
For no brake spaces use tildes for
spaces between two dollar signs.
Leave a blank line for a line feed.
Math symbols are rendered between two $ signs.
[LaTex Help Html Link](https://kapeli.com/cheat_sheets/LaTeX_Math_Symbols.docset/Contents/Resources/Documents/index)
$\alpha$
$ \alpha = \beta $
$\mathscr David~ Marc~ Tan~ Creti$
$\mathfrak David~\mathfrak Marc~\mathfrak Tan~\mathfrak Creti$
$\mathcal David Marc Tan Creti$
$$\mathbb Greetings. $$
$$This~display~has~spaces~made~with~tildes!$$
---
*help*
__me2__
_me_
---
Hello from between horizontal rulers.
---
``\LaTeX\ \ \ \ A = \pi r^2 ``
`` 3^6 pi e^i\pi ``
`` ``
```math
f(a) = \frac{1}{2\pi}\int_{0}^{2\pi} (\alpha+R\cos(\theta))d\theta
```
```
Here is a
code block
beween triple
back ticks.
```
[^1] Note one
[^Barringer] Reference Article
# Level One
## Level Two
### Level Three
#### Level Four
##### Level Five
###### Level Six
Here's a quote:
> Julia is a high-level, high-performance dynamic programming language for
> technical computing, with syntax that is familiar to users of other
> technical computing environments.
+ item one two spaces before
+ two
+ three
+ four
+ five
+
+ item two
+ item three
1)
2)
3)
---
!!! note "Note"
This is the content of the note.
!!! warning "Beware!"
And this is another one.
!!! hint "MyHint"
This is the content of the hint.
!!! help "Help!"
How may we help you?
!!! red "Advice"
A word to the wise is sufficient!
!!! whatever "Additional Help"
Try again
and again!
!!! divider ""
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
|----Column One---|----Column Two----|----Column Three----|
|:----------: | :---------- |:------------: |
| *Row* 2 | **Row** 2 |``3B``Column |
"""
# ╔═╡ 58484c68-5bb9-11eb-2cea-6df30770eaaa
md"""

"""
# ╔═╡ a634c51e-5bb9-11eb-185b-7777c0b5a778
md"""

"""
# ╔═╡ 86e17588-5bbf-11eb-01c5-f19a6581d3c9
pwd()*"/Tiger.50.jpg"
# ╔═╡ 090ececa-5bfc-11eb-2c32-dbac0bd527b0
md"""

"""
# ╔═╡ 46304b82-5c0e-11eb-0444-97b86948cdfd
md"""
[Tiger](https://www.dropbox.com/s/anoj6agrz3fnebr/CornBowel1.jpg?dl=0)
"""
# ╔═╡ c402c28e-5c1c-11eb-1f89-e5dd0316bf75
dog = load("./Tiger.50.jpg")
# ╔═╡ e63d1158-5c1f-11eb-2cf7-0f14c4309fb5
philip_file = download("https://drive.google.com/file/d/1gMBxAVh9NzNsQztfQqD2aQgN5Mg8baUM/view?usp=download x.jpg")
# ╔═╡ f243c06e-5c1f-11eb-15e4-3506e26e1d9a
load(philip_file)
# ╔═╡ 3315fed2-59f4-11eb-065c-5f4f4aa3fd85
Text(sprint(versioninfo))
# ╔═╡ b61675e2-5a4b-11eb-1983-b96c71b4e0d1
myVariable = 65
# ╔═╡ 2ad843c6-5b00-11eb-3092-51f414ed4efe
myString = "My variable is"
# ╔═╡ 9cb89e92-59f6-11eb-14b4-0dc23f5c914d
s2 = "$myString: $myVariable"
# ╔═╡ 02b028e4-5b02-11eb-0fcf-9d8d07ff2817
s2
# ╔═╡ 6c34f1e4-5b04-11eb-21a6-7d61a928dba5
md"""
$myString
-->
$myVariable
"""
# ╔═╡ d69de236-5b41-11eb-1dbe-df913335e3f0
#textarea(hint="Enter name"; rows=3)
# ╔═╡ 5cd77430-5b9d-11eb-0661-eb3cb1b47151
Pkg.installed()
# ╔═╡ 7cc8cea0-5ba8-11eb-183a-2139b05c710b
# ╔═╡ Cell order:
# ╠═53e94c18-5684-11eb-21e9-01510c841f58
# ╠═e0e61a2a-5b42-11eb-3e21-a5af0c3ba8fb
# ╠═fc21549e-5683-11eb-07bf-51233c3f5e9b
# ╠═58484c68-5bb9-11eb-2cea-6df30770eaaa
# ╠═a634c51e-5bb9-11eb-185b-7777c0b5a778
# ╠═86e17588-5bbf-11eb-01c5-f19a6581d3c9
# ╠═090ececa-5bfc-11eb-2c32-dbac0bd527b0
# ╠═46304b82-5c0e-11eb-0444-97b86948cdfd
# ╠═c402c28e-5c1c-11eb-1f89-e5dd0316bf75
# ╠═e63d1158-5c1f-11eb-2cf7-0f14c4309fb5
# ╠═f243c06e-5c1f-11eb-15e4-3506e26e1d9a
# ╠═3315fed2-59f4-11eb-065c-5f4f4aa3fd85
# ╠═b61675e2-5a4b-11eb-1983-b96c71b4e0d1
# ╠═2ad843c6-5b00-11eb-3092-51f414ed4efe
# ╠═9cb89e92-59f6-11eb-14b4-0dc23f5c914d
# ╠═02b028e4-5b02-11eb-0fcf-9d8d07ff2817
# ╠═6c34f1e4-5b04-11eb-21a6-7d61a928dba5
# ╠═d69de236-5b41-11eb-1dbe-df913335e3f0
# ╠═5cd77430-5b9d-11eb-0661-eb3cb1b47151
# ╠═7cc8cea0-5ba8-11eb-183a-2139b05c710b