You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2020/03/22 17:22:33 UTC

[karaf] branch master updated: [KARAF-6649] fixed wrong wiki syntax introduced in KARAF-3679

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/karaf.git


The following commit(s) were added to refs/heads/master by this push:
     new bece444  [KARAF-6649] fixed wrong wiki syntax introduced in KARAF-3679
     new 9ccceab  Merge pull request #1078 from oklimberg/KARAF-6649
bece444 is described below

commit bece4448fcb18a84978cd5c43d393c322730ca00
Author: Oliver Limberg <o....@portrix.net>
AuthorDate: Sat Mar 21 13:42:57 2020 +0100

    [KARAF-6649] fixed wrong wiki syntax introduced in KARAF-3679
---
 .../src/main/asciidoc/developer-guide/creating-bundles.adoc   | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/manual/src/main/asciidoc/developer-guide/creating-bundles.adoc b/manual/src/main/asciidoc/developer-guide/creating-bundles.adoc
index 4edf7b4..55ad79a 100644
--- a/manual/src/main/asciidoc/developer-guide/creating-bundles.adoc
+++ b/manual/src/main/asciidoc/developer-guide/creating-bundles.adoc
@@ -29,13 +29,13 @@ It supports ASCII character declarations (for adding color, formatting, etc) and
 Simply add a `src/main/resources/OSGI-INF/bundle.info` file containing, for instance:
 
 ----
-== SYNOPSIS
+h1. SYNOPSIS
     ${project.description}
 
-== DESCRIPTION
+h1. DESCRIPTION
     Long description of your bundle, including usage, etc.
 
-==SEE ALSO
+h1. SEE ALSO
     [http://yourside\]
     [http://yourside/docs\]
 ----
@@ -51,9 +51,10 @@ root@karaf> bundles:info
 Karaf supports some simple wiki syntax in bundle info files:
 
 ----
-==, ===, ... : Headings
+h1., h2., ... : Headings
 * : Enumerations
-[http://....] : links
+[ http://.... ] : links (there must be a space after the opening bracket)
+**text** : bold text
 ----
 
 === Creating bundles for non OSGi third party dependencies