summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-30 14:56:08 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-30 22:45:29 +0200
commit7b9e3c4b4c90faa65cf226c8355be27a52cd01b8 (patch)
tree0aa8b24c5e17fa4d09af5c999da3364213dfea99
parentc8204ed6a2fa21a746ad019e1a3efbcbd650f8b2 (diff)
downloadcurl-7b9e3c4b4c90faa65cf226c8355be27a52cd01b8.tar.gz
examples/README: convert to markdown
Closes #6028
-rw-r--r--docs/examples/Makefile.am2
-rw-r--r--docs/examples/README.md (renamed from docs/examples/README)22
2 files changed, 10 insertions, 14 deletions
diff --git a/docs/examples/Makefile.am b/docs/examples/Makefile.am
index 44372a19c..b8fd1ffda 100644
--- a/docs/examples/Makefile.am
+++ b/docs/examples/Makefile.am
@@ -22,7 +22,7 @@
AUTOMAKE_OPTIONS = foreign nostdinc
-EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 \
+EXTRA_DIST = README.md Makefile.example Makefile.inc Makefile.m32 \
Makefile.netware makefile.dj $(COMPLICATED_EXAMPLES)
# Specify our include paths here, and do it relative to $(top_srcdir) and
diff --git a/docs/examples/README b/docs/examples/README.md
index 6336c3733..f2ba0619e 100644
--- a/docs/examples/README
+++ b/docs/examples/README.md
@@ -1,8 +1,4 @@
- _ _ ____ _
- ___| | | | _ \| |
- / __| | | | |_) | |
- | (__| |_| | _ <| |___
- \___|\___/|_| \_\_____|
+# libcurl examples
This directory is for libcurl programming examples. They are meant to show
some simple steps on how you can build your own application to take full
@@ -11,26 +7,26 @@ advantage of libcurl.
If you end up with other small but still useful example sources, please mail
them for submission in future packages and on the website.
-BUILDING
+## Building
The Makefile.example is an example makefile that could be used to build these
examples. Just edit the file according to your system and requirements first.
Most examples should build fine using a command line like this:
- $ `curl-config --cc --cflags --libs` -o example example.c
+ `curl-config --cc --cflags --libs` -o example example.c
Some compilers don't like having the arguments in this order but instead
want you do reorganize them like:
- $ `curl-config --cc` -o example example.c `curl-config --cflags --libs`
+ `curl-config --cc` -o example example.c `curl-config --cflags --libs`
-*PLEASE* do not use the curl.haxx.se site as a test target for your libcurl
-applications/experiments. Even if some of the examples use that site as a URL
-at some places, it doesn't mean that the URLs work or that we expect you to
-actually torture our website with your tests! Thanks.
+**Please** do not use the `curl.haxx.se` site as a test target for your
+libcurl applications/experiments. Even if some of the examples use that site
+as a URL at some places, it doesn't mean that the URLs work or that we expect
+you to actually torture our website with your tests! Thanks.
-EXAMPLES
+## Examples
Each example source code file is designed to be and work stand-alone and
rather self-explanatory. The examples may at times lack the level of error