Fix markdown issue docusaurus

This commit is contained in:
Faisal Amir 2023-10-26 13:31:27 +07:00
parent 66d26c0372
commit 85e460c848
11 changed files with 18 additions and 5 deletions

View File

@ -27,14 +27,14 @@ title: Anatomy of an app
##
Platform has 3 events that are broadcast to installed Apps
![Platform events](img/app-anatomy-4.drawio.png)
![Platform events](img/app-anatomy-4.drawio.jpg)
- onLaunch()
![Platform onLaunch()](img/app-anatomy-1.drawio.png)
![Platform onLaunch()](img/app-anatomy-1.drawio.jpg)
- onStart()
![Platform onStart()](img/app-anatomy-2.drawio.png)
![Platform onStart()](img/app-anatomy-2.drawio.jpg)
- onDispose()
![Platform onDispose()](img/app-anatomy-3.drawio.png)
![Platform onDispose()](img/app-anatomy-3.drawio.jpg)
- 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
![Communication](img/app-anatomy-5.drawio.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@ -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;

View File

@ -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;
}
}
}