hysts HF Staff commited on
Commit
bad7dd1
·
1 Parent(s): ba4f9cb
Files changed (2) hide show
  1. README.md +3 -2
  2. app.py +11 -1
README.md CHANGED
@@ -1,5 +1,6 @@
1
  ---
2
- title: Base Space
 
3
  emoji: ⚡
4
  colorFrom: red
5
  colorTo: purple
@@ -7,8 +8,8 @@ sdk: gradio
7
  sdk_version: 3.41.2
8
  python_version: 3.10.12
9
  app_file: app.py
10
- license: mit
11
  duplicated_from: hysts-debug/base-space
 
12
  ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ license: mit
3
+ title: markdown new line
4
  emoji: ⚡
5
  colorFrom: red
6
  colorTo: purple
 
8
  sdk_version: 3.41.2
9
  python_version: 3.10.12
10
  app_file: app.py
 
11
  duplicated_from: hysts-debug/base-space
12
+ pinned: false
13
  ---
14
 
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -2,6 +2,16 @@
2
 
3
  import gradio as gr
4
 
 
 
 
 
 
 
 
 
 
 
5
  with gr.Blocks() as demo:
6
- pass
7
  demo.queue().launch()
 
2
 
3
  import gradio as gr
4
 
5
+ markdown = """
6
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over
7
+ the lazy dog.
8
+
9
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
10
+
11
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over\
12
+ the lazy dog.
13
+ """
14
+
15
  with gr.Blocks() as demo:
16
+ gr.Markdown(markdown)
17
  demo.queue().launch()