-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathfaq.html
72 lines (62 loc) · 2.47 KB
/
faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>PDF 2 SVG Converter</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/navbar-fixed-top.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/index.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/turn.min.js"></script>
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">PDF 2 SVG</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li c><a href="index.html">Home</a></li>
<li><a href="#magazine">Demo</a></li>
<li class="active"><a href="faq.html">FAQ</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<h1> FAQ </h1>
<hr class="half-rule"></hr>
<h3>
Q1: How do I use this tool?
</h3>
<p>
A: Clone the project, and run `node pdf2svg.js [pdf_name]`. You will find all the svg output files (page-wise) under a folder named 'svgdump'.
</p>
<hr class="half-rule"></hr>
<h3>
Q2: How is this tool built?
</h3>
<p>
A: The tool is built using an SVG backend for PDF.js, I built as a GSoC 2014 project. You can know more about this <a href="https://github.com/pramodhkp/pdf.js/tree/master/examples/svgviewer">here</a>.
</p>
<hr class="half-rule"></hr>
</div>
</body>
</html>