merve HF staff commited on
Commit
fc59b99
β€’
1 Parent(s): 832f39c

Add formatting tips

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -24,3 +24,23 @@ Please mind the below guidelines when writing the blogπŸ‘‡
24
  - All blogs are subjected to [content guidelines](https://huggingface.co/content-guidelines) of Hugging Face Hub.
25
 
26
  Looking forward to read your posts! 😊
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - All blogs are subjected to [content guidelines](https://huggingface.co/content-guidelines) of Hugging Face Hub.
25
 
26
  Looking forward to read your posts! 😊
27
+
28
+ <details>
29
+ <summary>Helpful formatting tips πŸͺ„βœ¨</summary>
30
+
31
+ - You can add usual markdown headers (# for Header 1, ## for Header 2, ## for Header 3)
32
+
33
+ - You can write LaTeX by writing it like this: `$$...$$`` for example πŸ‘‡
34
+ ```
35
+ $$Y = X * \textbf{dequantize}(W); \text{quantize}(W)$$
36
+ ```
37
+ - You can add anchor links βš“οΈ like below πŸ‘‡πŸ»
38
+ ```
39
+ ## My awesome section[[some-section]]
40
+ // the anchor link is: `some-section`
41
+ ```
42
+ - Adding code formatting by enclosing with '```' πŸ‘‡πŸ»
43
+
44
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6141a88b3a0ec78603c9e784/Dm2ZNH9oW5DF0S37nmCTS.png)
45
+
46
+ </details>