Website Debugging
This is a website debugging article. It is responsible for debugging various syntax/plugins/images. It will be pinned when necessary.
MARKDOWN Basic Syntax
Title Syntax
# Level 1 heading
## Level 2 heading
### Level 3 heading
#### Level 4 heading
##### Level 5 heading
###### Level 6 heading
Printing Output
Level 1 heading
Level 2 heading
Level 3 heading
Level 4 heading
Level 5 heading
Level 6 heading
Literal Style Syntax
Normal Font Effect
*Italic words*
**Bold words**
***Bold and italic words***
Printing Output
Italic words
Bold words
Bold and italic words
Mathematical Formula Syntax
Use math: true to use them
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
List Syntax
Ordered List
1. First
2. Second
3. Third
4. Fourth
Printing Output
- First
- Second
- Third
- Fourth
Unordered List
- First
- Second
- Third
- Fourth
Printing Output
- First
- Second
- Third
- Fourth
Block
Quote Block
> Words in blockquotes
> **Bold words in blockquote**
> - unordered list 1 in blockquote
> - unordered list 2 in blockquote
>
> 1. ordered list 1 in block reference
> 2. ordered list 1 in block reference
>
>> References in block references
>>> Duplicate references many times
Printing Output
Words in blockquotes
Bold words in blockquote
- unordered list 1 in blockquote
- unordered list 2 in blockquote
- ordered list 1 in block reference
- ordered list 1 in block reference
References in block references
Duplicate references many times
Code Block-1
public class Demo {
public static void main(String[] args) {
System.out.println("Demo Code");
}
}
Printing Output
public class Demo {
public static void main(String[] args) {
System.out.println("Demo Code");
}
}
Code Block-2
This is also a code block.
Four spaces are used before the text to create it.
Printing Output
This is also a code block.
Four spaces are used before the text to create it.
Code Syntax
This is `code`
``Use `code` in Markdown``
Printing Output
This is code
Use `code` in Markdown
Other Syntax
Separator Syntax
There is a dividing line below this line of text
---
There is a dividing line above this line of text
Printing Output
There is a dividing line below this line of text
There is a dividing line above this line of text
To ensure correct display, please add blank lines before and after the separator line.
Link Syntax
Link [Ganfan_man's personal blog](https://gan-fan-man.github.io)
Link containing title [Google](https://google.com "Google search")
<https://gan-fan-man.github.io>
Printing Output
Link Ganfan_man’s personal blog
Link containing title Google
Styled Links
Bold Links **[Google](https://google.com "Google search")**
Italic Links *[Google](https://google.com "Google search")*
Code Links [`Google`](#https://google.com)
Printing Output
Bold Links Google
Italic Links Google
Code Links Google
Picture Grammar


Reference Annotation Link
Reference Annotation link can be used in comments
[Google][1]
---
[1]: https://google.com
Printing Output
MARKDOWN Advanced Syntax
Typesetting Syntax
Table syntax
| 111 | 222 |
| --- | --- |
| 333 | 444 |
| 555 | 666 |
Printing Output
| 111 | 222 |
|---|---|
| 333 | 444 |
| 555 | 666 |
Task List Syntax
- [x] I got up today
- [ ] I had breakfast today
- [ ] I had lunch today
- I got up today
- I had breakfast today
- I had lunch today
Effect Style Syntax
Footnote Syntax
This is a footnote link[^1]
[^1]: Footnote
Printing Output
This is a footnote link1
Strikethrough Syntax
~~Strikethrough~~
~~1234567890~~
Printing Output
Strikethrough
1234567890
Emoji Syntax
:smile:
:joy:
:+1:
:heart:
:tada:
:rocket:
:bug:
Printing Output
:smile: :joy: :+1: :heart: :tada: :rocket: :bug:
Debug
Block Debugging
For debugging CSS
Quoteblock Debugging
1234567
一二三四五六七
abcdefg
ABCDEFG
, . / ? ; : ‘ \ ` ~ ! @ # $ % ^ & * () - _ = +
, 。 、 ? ; : ’ “ · ~ ! @ # ¥ % …… & * ( ) - —— = +1234567
1234567
Code Blocks Debugging
//It's just a sample code, it has no actual effect.
//I am a comment
//これは単なるサンプルコードであり、実際の効果はありません。
//コメントです〜
//只是一段示例代码 没有实际作用
//我是注释
public class CodeExample {
public static void main(String[] args) {
int number = 42; // これは整数です
String text = "Hello, World!"; // これは文字列です
// エラーメッセージと型名
try {
throw new Exception("これはエラーメッセージです");
} catch (Exception e) {
System.out.println("キャッチされたエラー: " + e.getMessage());
}
try {
Runtime.getRuntime().exec("notepad");
} catch (Exception e) {
System.out.println("コマンドを実行できません");
}
System.out.println("新しいテキスト行を追加する");
final int constant = 100;
public static void myFunction() {
}
char specialChar = '\n';
String specialSymbols = "!@#$%^&*()";
String specialString = "これは特別な文字列です";
Object nullValue = null;
double pi = Math.PI;
long bigNumber = 1234567890123L;
MyClass myObject = new MyClass();
myObject.myMethod();
}
}
class MyClass {
void myMethod() {
System.out.println("MyClass");
}
}
Image Debugging
Image Viewing Debugging
px 7680*4320

px 5120*2880

px 3840*2160

px 2560*1440

px 1920*1080

mahoubox Plugin Testing
px 7680*4320
px 5120*2880
px 3840*2160
px 2560*1440
px 1920*1080
-
Footnote ↩




