0.0.4 • Published 2 years ago

@shdvn/re-pptxtojson v0.0.4

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 years ago

🎨 PPTX2JSON

PPTX2JSON Đây là một công cụ có nguồn gốc từ PPTX2HTML. Các tệp .pptx có thể được phân tích cú pháp thành dữ liệu JSON. Nó vẫn chưa đủ để sử dụng cho sản xuất.

install

npm install re-pptxtojson

💿 use

<input type="file" accept="application/vnd.openxmlformats-officedocument.presentationml.presentation"/>
import { parse } from 're-pptxtojson'

document.querySelector('input').addEventListener('change', evt => {
	const file = evt.target.files[0]
	
	const reader = new FileReader()
	reader.onload = async e => {
		const json = await parse(e.target.result)
		console.log(json)
	}
	reader.readAsArrayBuffer(file)
})
0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago