mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
rebuilding site Sun Aug 7 09:20:50 AM CST 2022
This commit is contained in:
parent
0460249b84
commit
eb59eb477e
2 changed files with 24 additions and 1 deletions
23
en/searchurl/txt/docx2html.html
Normal file
23
en/searchurl/txt/docx2html.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html><html>
|
||||
<title>docx2html</title>
|
||||
<head>
|
||||
<script src="https://fastly.jsdelivr.net/gh/lalalic/docx2html/docs/index.js"></script>
|
||||
<script>
|
||||
function convert(input){
|
||||
require("docx2html")
|
||||
(input.files[0],
|
||||
{container:document.querySelector("#container")})
|
||||
.then(html=>{input.value="";});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<center>
|
||||
<h2>select a docx to convert to html</h2>
|
||||
<input type="file" onchange="convert(this)"/>
|
||||
</center>
|
||||
<div id="container" style="margin:10px;padding:10px;border:1px solid; text-align:left; min-height:1000px;"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue