Skip to content

Announcements Info

tkaixiang edited this page Sep 18, 2021 · 2 revisions

General Notes

  • Announcements are stored in localStorage on the client side on initial load. Whenever the announcements page is refreshed, the client checks if the server has any new updates for announcements and retrieves the announcements if there are updates.
  • Announcements are sorted by time

Managing Announcements

You can edit/delete/create challenges in the Announcements admin panel.

  • Supports Markdown, HTML and Code blocks with syntax highlighting
Simply type the following in the editor:
```<language>
```

E.g
```python
print("hello world")
```