File size: 411 Bytes
ba4f9cb
 
 
 
bad7dd1
 
 
 
 
 
 
 
 
 
ba4f9cb
bad7dd1
ba4f9cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

import gradio as gr

markdown = """
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over
the lazy dog.

The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog. The quick brown fox jumps over\
the lazy dog.
"""

with gr.Blocks() as demo:
    gr.Markdown(markdown)
demo.queue().launch()