Files
docx-js/docs/index.html

31 lines
1.0 KiB
HTML
Raw Normal View History

2018-08-03 23:26:14 +01:00
<!DOCTYPE html>
<html lang="en">
2018-08-04 04:03:08 +01:00
2018-08-03 23:26:14 +01:00
<head>
2018-08-04 04:03:08 +01:00
<meta charset="UTF-8">
<title>docx - Generate .docx documents with JavaScript</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Generate .docx documents with JavaScript">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
2018-08-03 23:26:14 +01:00
</head>
2018-08-04 04:03:08 +01:00
2018-08-03 23:26:14 +01:00
<body>
2018-08-04 04:03:08 +01:00
<div id="app"></div>
<script>
window.$docsify = {
name: 'docx',
repo: 'https://github.com/dolanmiu/docx',
loadSidebar: true,
subMaxLevel: 2,
search: 'auto',
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
2018-08-03 23:26:14 +01:00
</body>
2018-08-04 04:03:08 +01:00
2018-08-03 23:26:14 +01:00
</html>