Update 'README.md'

master
camilo 2 years ago
parent 45243a51f5
commit 696931eb1d

@ -60,7 +60,7 @@ See this pandoc documentation to explore more possibilities with Markdown: https
### Def Glossary content ### Def Glossary content
* Convert the markdown file into html file using pypandoc * Convert the markdown file into html file using pypandoc
*Via API using etherpad* *Via API using etherpad
``` ```
import json, pypandoc import json, pypandoc
@ -84,9 +84,9 @@ glossary = ep("getText", api_url, api_key, padID="camilo_glossary")
text = glossary["data"]["text"] text = glossary["data"]["text"]
words = pypandoc.convert_text(text, 'html', format='md') words = pypandoc.convert_text(text, 'html', format='md')
```
*Via Local Markdown File* ```
*Via Local Markdown File
``` ```
import pypandoc import pypandoc
@ -138,6 +138,7 @@ for title, symbol, color in properties:
``` ```
* Adding property symbols in front of each word generating a Java script code: * Adding property symbols in front of each word generating a Java script code:
``` ```
script = '' script = ''
@ -168,9 +169,9 @@ for title, symbol, color in properties:
``` ```
* Writing the Body * Writing the Body. Note that here you are using the previous variables **style**, **legend**, and **script**
*note that here you are using the previous variables *style*, *legend*, and *script*
``` ```
body = f'''<!DOCTYPE html> body = f'''<!DOCTYPE html>
<html> <html>
@ -216,13 +217,15 @@ body = f'''<!DOCTYPE html>
``` ```
* Writing the `indel.html` file * Writing the `indel.html` file
``` ```
website = open('index.html','w') website = open('index.html','w')
website.write(body) website.write(body)
website.close() website.close()
``` ```
* Open the index.html file in your browser * Open the index.html file in your browser and enjoy
### ###
.... ....
Loading…
Cancel
Save