Skip to main content

README

· 2 min read
Nullniverse

So, you want to make your first post here! Read below the guidelines on how to make it happen!

1. Clone this Repo

Start by cloning locally this repo and create a new branch from main.

Make sure you have allowed signed commits (1)(2) on your account before pushing your new branch and opening a PR.

2. Conventions

  1. Use a <!-- truncate --> comment to limit blog post size in the list view, respecting other's postings.
  2. Add yourself to the authors.yml file if it is your first post (Welcome!).
  3. Add a new folder with the following naming pattern: YYYY-MM-DD-post-title inside the blog/ folder. The blog post date can be extracted from filenames, such as: 2019-05-30-welcome/index.mdx
  4. Inside it, create a new index.mdx - note that the name MUST be index.mdx and we are enforcing .mdx extensions throughout this project's posts. Read more below...
  5. Images should be inserted inside your post's folder and inserted like this: Docusaurus Plushie
  6. Don't forget to use tags in the headings of your posts. This way we can sort content better for our readers (:

References

Blog posts support Docusaurus Markdown features, such as MDX.

tip

Use the power of React to create interactive blog posts. Don't abuse this feature!

<button onClick={() => alert('button clicked!')}>Click me!</button>

We have allowed the support to write TeX text inside postings for your convenience:

Let f ⁣:[a,b]Rf\colon[a,b]\to\R be Riemann integrable. Let F ⁣:[a,b]RF\colon[a,b]\to\R be F(x)=axf(t)dtF(x)=\int_{a}^{x} f(t)\,dt. Then FF is continuous, and at all xx such that ff is continuous at xx, FF is differentiable at xx with F(x)=f(x)F'(x)=f(x).

Please, check KaTeX documentations for more details.