-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(blog): add "Documenting Rust code with Markdown" blog post #8
base: main
Are you sure you want to change the base?
docs(blog): add "Documenting Rust code with Markdown" blog post #8
Conversation
d1f91e7
to
9f1b349
Compare
As requested, the |
bc5f4db
to
f1cb14c
Compare
As requested, a |
8dae903
to
516fb74
Compare
Adds a new blog post on the `GASERI Blog`. The post describes usage of Markdown language while documenting Rust code and usage of `rustdoc` tool to generate a HTML code documentation. It contains a simple guide for the reader to easily try the `rustdoc` tool on his own machine by spinning up a simple Rust web service powered by the `axum` web application framework.
516fb74
to
540391c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description: GASERI alumni would be stronger and correct: https://group.miletic.net/en/people/#former-students
- rust | ||
- markdown | ||
- documentation | ||
- rustdoc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest removing rustdoc
and axum
since these tags are unlikely to be repeated in future posts, but rust
should be kept
authors: | ||
- klenkovic | ||
date: 2024-06-01 | ||
readtime: 15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can also let Material automatically generate this
## Project Setup | ||
|
||
Once you have installed Rust on your system, let's create a new project and install some dependencies that we will need for this to work. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to have a paragraph here giving a bit of context, i.e. Axum is ... Tokio is ... We'll install them right away.
@@ -9,3 +9,8 @@ authors: | |||
description: PhD student | |||
avatar: https://github.com/mateaturalija.png | |||
url: https://mateaturalija.github.io/ | |||
klenkovic: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer kristijanlenkovic
for consistency
Adds a new blog post on the
GASERI Blog
. The post describes usage of Markdown language while documenting Rust code and usage ofrustdoc
tool to generate a HTML code documentation. It contains a simple guide for the reader to easily try therustdoc
tool on his own machine by spinning up a simple Rust web service powered by theaxum
web application framework.