summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
-rwxr-xr-xcompile.sh16
-rw-r--r--faqs.md5
-rw-r--r--getting_it.md1
4 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
index 79040d5..1a03750 100644
--- a/README.md
+++ b/README.md
@@ -27,3 +27,10 @@ Sandhi is a free and open-source visual programming language and editor to repla
- [Links to earlier documentation](scope.md#links-to-earlier-documentation)
## [Frequently Asked Questions](faqs.md)
+- [About Us](faqs.md#about-us)
+
+### Get a single page documentation
+1. Clone this repository
+2. `sudo ./compile.sh`
+3. Checkout one.html
+
diff --git a/compile.sh b/compile.sh
new file mode 100755
index 0000000..11ae8a7
--- /dev/null
+++ b/compile.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+# Install pandoc if unavailable
+sudo apt-get install pandoc
+
+# Remove existing final.md
+rm final.md
+
+# Compile it into one
+for f in README.md getting_it.md code_devel.md using_it.md scope.md faqs.md
+do
+ cat $f >> final.md
+done
+pandoc final.md -o one.html
+
+echo "Check one.html";
diff --git a/faqs.md b/faqs.md
index 159f772..621596b 100644
--- a/faqs.md
+++ b/faqs.md
@@ -7,3 +7,8 @@ Mostly you don't have sufficient permissions to access /dev/ttyUSB0 (which is SB
sudo adduser `whoami` dialout
**Logout User** and check.
+
+### About Us
+GNU GPL V3 <br>
+Project developed at FOSSEE, NME-ICT, IIT Bombay sponsored by MHRD Govt of India.
+
diff --git a/getting_it.md b/getting_it.md
index 788093f..ced528b 100644
--- a/getting_it.md
+++ b/getting_it.md
@@ -89,3 +89,4 @@ and then proceed as given in __Build it__ section from _make_ command.
`fpm -s dir -t deb -n "sandhi" -v 0.9 -C out/ -p sandhi-VERSION_ARCH.deb -d "git-core autoconf automake make libtool g++ python-dev swig pkg-config libboost1.48-all-dev libfftw3-dev libcppunit-dev libgsl0-dev libusb-dev sdcc libsdl1.2-dev python-wxgtk2.8 python-numpy python-cheetah python-lxml doxygen python-qt4 python-qwt5-qt4 libxi-dev libqt4-opengl-dev libqwt5-qt4-dev libfontconfig1-dev libxrender-dev" /usr/local/bin /usr/local/include/ /usr/local/lib /usr/local/libexec/ /usr/local/share/ /usr/local/etc/`
------------
+