diff --git a/05-osm-usage.md b/05-osm-usage.md index 78b462075666c3e6278a80189d6b6d8f9caeb4b2..87400065b22d4096a46ce03ca33ff2c3d1e4973c 100644 --- a/05-osm-usage.md +++ b/05-osm-usage.md @@ -36,7 +36,7 @@ openvim image-create --name cirros034 --path /mnt/openvim-nfs/cirros-0.3.4-x86_6 - From the UI: - Go to 'VNF Packages' on the 'Packages' menu to the left - - Drag and drop the VNF package file cirros_vnf.tar.gz in the importing area. + - Drag and drop the VNF package file `cirros_vnf.tar.gz` in the importing area. ![Onboarding a VNF](assets/600px-Vnfd_onboard_r4.png) @@ -51,7 +51,7 @@ osm vnfd-list - From the UI: - Go to 'NS Packages' on the 'Packages' menu to the left - - Drag and drop the NS package file cirros_2vnf_ns.tar.gz in the importing area. + - Drag and drop the NS package file `cirros_2vnf_ns.tar.gz` in the importing area. ![Onboarding a NS](assets/600px-Nsd_onboard_r4.png) diff --git a/README.md b/README.md index 83ed60a591427841711508bed7ccc503e6f37bed..a50a8c354fe584bce502f6c3ddf014d941fb7cae 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,11 @@ sudo -H python3 -m pip install -r requirements.txt Then run: ```bash +# Clean previous html +make clean +# Fix references to sections in other docs +for i in [0-1]*.md; do sed -i "s/\.md\#/\.html\#/g" $i; done +# Build html documentation make html ```