, December 31, 2024
Ở đầu dòng gõ liên tiếp các ký tự #
rồi space
. Lưu ý không dùng H1. VD ### + space
là H3.
Sử dụng cặp "`" như sau `keyword/value`. Kết qủa: keyword/value
Gõ 3 lần "`" rồi enter, nhập source code vào và điền tên ngôn ngữ ở box trên bên trái.
Các ngôn ngữ 200Lab có hỗ trợ:
Dùng để highlight các dòng code cần chú ý, hoặc cần chú giải. Chỗ này cần HTML:
Kết quả:
use std::io;
use rand::Rng;
fn main() {
println!("Guess the number!");
let secret_number = rand::thread_rng().gen_range(1..=100);
println!("The secret number is: {secret_number}");
println!("Please input your guess.");
let mut guess = String::new();
io::stdin()
.read_line(&mut guess)
.expect("Failed to read line");
println!("You guessed: {guess}");
}
guess
, nếu có lỗi sẽ in ra Failed to read line
Cái này hiệu quả cho các nội dung dài, cần rút gọn kiểu collapse.
Cách dùng: Gõ /
+ t
, chọn Toogle Card. Demo:
Nội dung cách 1
Nội dung cách 2
Dùng để format các thông tin quan trọng.
Cách dùng: Gõ /
+ c
rồi chọn Callout Card. Demo:
Gõ /
+ bu
rồi chọn Button. Demo:
Gõ /
+ prod
rồi chọn Product. Demo:
Dùng để ghi chú và giải thích các định nghĩa.
Cách dùng là thông qua markdown:
Here's a short footnote,[^1] and here's a longer one.[^longnote]
[^1]: This is a short footnote.
[^longnote]: This is a longer footnote with paragraphs, and code.Indent paragraphs to include them in the footnote.
Kết quả:
Here's a short footnote,[1] and here's a longer one.[2]
jkjkj