summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2021-07-12 13:59:34 +0100
committerPhilip Withnall <pwithnall@endlessos.org>2021-07-12 14:00:07 +0100
commitd4f5b87507c43d6417c0af34b0db6615043caadb (patch)
tree2e7a6146b82b58381e4dd294cc90c2117a0439df
parentbb7317bd4692d59e088d798dd4bd8c0af2177fd9 (diff)
downloadlibgdata-d4f5b87507c43d6417c0af34b0db6615043caadb.tar.gz
docs: Port README to Markdown
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--README64
-rw-r--r--README.md61
2 files changed, 61 insertions, 64 deletions
diff --git a/README b/README
deleted file mode 100644
index b0f38c3c..00000000
--- a/README
+++ /dev/null
@@ -1,64 +0,0 @@
-libgdata
-========
-
-libgdata is a GLib-based library for accessing online service APIs using the
-GData protocol --- most notably, Google's services. It provides APIs to access
-the common Google services, and has full asynchronous support.
-
-See the test programs in gdata/tests/ for simple examples of how to use the
-code.
-
-libgdata is API and ABI stable.
-
-Dependencies
-============
-
- • glib-2.0 ≥ 2.44.0
- • libxml-2.0
- • gio-2.0 ≥ 2.44.0
- • libsoup-2.4 ≥ 2.42.0
- • liboauth ≥ 0.9.4
- • json-glib ≥ 0.15.0
-
-If compiling with --enable-gnome (for GNOME support):
- • gcr-base-3
- • goa-1.0 ≥ 3.8
-
-If compiling the demos:
- • gtk+-3.0 ≥ 2.91.2
-
-Environment variables
-=====================
-
-If the environment variable LIBGDATA_DEBUG is set to one of the following
-values, libgdata will give debug output (at various levels):
- 0: Output no debug messages or network logs
- 1: Output debug messages, but not network logs
- 2: Output debug messages and network traffic headers
- 3: Output debug messages and full network traffic logs, redacting usernames,
- passwords and auth. tokens
- 4: Output debug messages and full network traffic logs, and don't redact
- usernames, passwords and auth. tokens
-If LIBGDATA_DEBUG is unset, no debug output will be produced.
-
-So, to debug a program which uses libgdata, run it from a terminal with the
-following command:
-
-$ LIBGDATA_DEBUG=3 ./my-program-name &> libgdata.log
-
-Deprecation guards
-==================
-
-If LIBGDATA_DISABLE_DEPRECATED is defined when compiling against libgdata, all
-deprecated API will be removed from included headers.
-
-Licensing
-=========
-
-libgdata is licensed under the LGPL; see COPYING for more details.
-
-Contact
-=======
-
-Philip Withnall <philip@tecnocode.co.uk>
-https://wiki.gnome.org/Projects/libgdata
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..c969b109
--- /dev/null
+++ b/README.md
@@ -0,0 +1,61 @@
+# libgdata
+
+libgdata is a GLib-based library for accessing online service APIs using the
+GData protocol — most notably, Google's services. It provides APIs to access
+the common Google services, and has full asynchronous support.
+
+See the test programs in `gdata/tests/` for simple examples of how to use the
+code.
+
+libgdata is API and ABI stable.
+
+## Dependencies
+
+ * glib-2.0 ≥ 2.44.0
+ * libxml-2.0
+ * gio-2.0 ≥ 2.44.0
+ * libsoup-2.4 ≥ 2.42.0
+ * liboauth ≥ 0.9.4
+ * json-glib ≥ 0.15.0
+
+If compiling with `--enable-gnome` (for GNOME support):
+ * gcr-base-3
+ * goa-1.0 ≥ 3.8
+
+If compiling the demos:
+ * gtk+-3.0 ≥ 2.91.2
+
+## Environment variables
+
+If the environment variable `LIBGDATA_DEBUG` is set to one of the following
+values, libgdata will give debug output (at various levels):
+ * `0`: Output no debug messages or network logs
+ * `1`: Output debug messages, but not network logs
+ * `2`: Output debug messages and network traffic headers
+ * `3`: Output debug messages and full network traffic logs, redacting usernames,
+ passwords and auth. tokens
+ * `4`: Output debug messages and full network traffic logs, and don't redact
+ usernames, passwords and auth. tokens
+
+If `LIBGDATA_DEBUG` is unset, no debug output will be produced.
+
+So, to debug a program which uses libgdata, run it from a terminal with the
+following command:
+
+```
+LIBGDATA_DEBUG=3 ./my-program-name &> libgdata.log
+```
+
+## Deprecation guards
+
+If `LIBGDATA_DISABLE_DEPRECATED` is defined when compiling against libgdata, all
+deprecated API will be removed from included headers.
+
+## Licensing
+
+libgdata is licensed under the LGPL; see COPYING for more details.
+
+## Contact
+
+Philip Withnall <philip@tecnocode.co.uk>
+https://wiki.gnome.org/Projects/libgdata