Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -566,22 +566,7 @@ with gr.Blocks(theme="soft", title="Wordpress Article Generator") as article_gen
|
|
| 566 |
# outputs = gr.Textbox("", label="Judul")
|
| 567 |
# Ganti gr.Textbox dengan elemen HTML textarea untuk WYSIWYG
|
| 568 |
wysiwyg_editor_judul = gr.HTML("")
|
| 569 |
-
wysiwyg_editor = gr.HTML(
|
| 570 |
-
"""
|
| 571 |
-
<label for="wysiwyg-editor">Article</label>
|
| 572 |
-
<textarea id="wysiwyg-editor" style="height: 300px; width: 100%;"></textarea>
|
| 573 |
-
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js"></script>
|
| 574 |
-
<script>
|
| 575 |
-
tinymce.init({
|
| 576 |
-
selector: '#wysiwyg-editor',
|
| 577 |
-
plugins: 'lists advlist autolink link image charmap print preview hr anchor pagebreak',
|
| 578 |
-
toolbar: 'undo redo | bold italic underline | fontselect fontsizeselect | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
|
| 579 |
-
menubar: false,
|
| 580 |
-
content_style: 'body { background-color: #143; color: #fff; }'
|
| 581 |
-
});
|
| 582 |
-
</script>
|
| 583 |
-
"""
|
| 584 |
-
)
|
| 585 |
button_scrap.click(fn=scrap, inputs=[link, backlink, keyword, versi, api_key, link_azure, replicate_token], outputs=[wysiwyg_editor_judul,img,wysiwyg_editor])
|
| 586 |
with gr.Column():
|
| 587 |
endpoint= gr.Textbox(placeholder="Masukkan Endpoint Wordpress", label="Endpoint Wordpress")
|
|
|
|
| 566 |
# outputs = gr.Textbox("", label="Judul")
|
| 567 |
# Ganti gr.Textbox dengan elemen HTML textarea untuk WYSIWYG
|
| 568 |
wysiwyg_editor_judul = gr.HTML("")
|
| 569 |
+
wysiwyg_editor = gr.HTML("")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 570 |
button_scrap.click(fn=scrap, inputs=[link, backlink, keyword, versi, api_key, link_azure, replicate_token], outputs=[wysiwyg_editor_judul,img,wysiwyg_editor])
|
| 571 |
with gr.Column():
|
| 572 |
endpoint= gr.Textbox(placeholder="Masukkan Endpoint Wordpress", label="Endpoint Wordpress")
|