Markdown Testing
Testing markdown, demonstrating components, style, etc.
Zach Sherman
Published on 2/15/2021
internalmarkdown
This is an h1
This is an h2
This is an h3
This is another h1
First Tab
Second Tab
Third Tab
1function test() {
2 if (thing) {
3 return true;
4
5 if (false) {
6 return true;
7 }
8 }
9}
1function hello() {
2 if (thing) {
3 return true;
4
5 if (false) {
6 return true;
7 }
8 }
9}
1public class MainActivity extends AppCompatActivity {
2 @Override
3 protected void onCreate(Bundle savedInstanceState) {
4 super.onCreate(savedInstanceState);
5 setContentView(R.layout.activity_main);
6 }
7
8 /** Called when the user taps the Send button */
9 public void sendMessage(View view) {
10 // Do something in response to button
11 }
12}