Fix markdown issue docusaurus
@ -27,14 +27,14 @@ title: Anatomy of an app
|
||||
##
|
||||
|
||||
Platform has 3 events that are broadcast to installed Apps
|
||||

|
||||

|
||||
|
||||
- onLaunch()
|
||||

|
||||

|
||||
- onStart()
|
||||

|
||||

|
||||
- onDispose()
|
||||

|
||||

|
||||
- At any given time, when there is new App installtion/ unintallation, the Platform restarts and trigger
|
||||
- When App is being used, here is how the information passes between Platform and Apps
|
||||

|
||||
|
||||
BIN
docs/docs/getting-started/img/app-anatomy-1.drawio.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 9.5 KiB |
BIN
docs/docs/getting-started/img/app-anatomy-2.drawio.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 13 KiB |
BIN
docs/docs/getting-started/img/app-anatomy-3.drawio.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 12 KiB |
BIN
docs/docs/getting-started/img/app-anatomy-4.drawio.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 18 KiB |
@ -30,7 +30,7 @@
|
||||
@apply text-sm;
|
||||
@apply antialiased;
|
||||
@apply bg-white dark:bg-black;
|
||||
@apply text-gray-700 dark:text-gray-500;
|
||||
@apply text-gray-700 dark:text-gray-400;
|
||||
}
|
||||
img {
|
||||
pointer-events: none;
|
||||
|
||||
@ -84,4 +84,17 @@
|
||||
a {
|
||||
@apply text-blue-600 dark:text-blue-400;
|
||||
}
|
||||
ul {
|
||||
list-style: revert;
|
||||
}
|
||||
ol {
|
||||
list-style: decimal;
|
||||
}
|
||||
ul,
|
||||
ol {
|
||||
padding-left: 16px;
|
||||
li {
|
||||
@apply leading-loose;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||