Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
playground:howto [2025/11/15 07:27] – Imported from DOCX rahulplayground:howto [2025/11/15 07:36] (current) rahul
Line 1: Line 1:
 +====== HOWTO ======
 +
 A user-friendly guide to adding and editing content on the IEEE Smart Village DokuWiki. A user-friendly guide to adding and editing content on the IEEE Smart Village DokuWiki.
 +
 +{{pdfjs 800,600>:playground:howto.pdf|?page-width}}
  
 ==== Getting Started: Creating a New Page ==== ==== Getting Started: Creating a New Page ====
Line 19: Line 23:
 **Bold and Italic**: **Bold and Italic**:
  
-For **bold** text, wrap it in double asterisks: **text**+For **bold** text, wrap it in double asterisks: ''%%**text**%%''
  
-For //italic// text, wrap it in double slashes: //text//+For //italic// text, wrap it in double slashes: ''%%//text//%%''
  
-For **underlined** text, wrap it in double underscores: __text__+For **underlined** text, wrap it in double underscores: ''%%__text__%%''
  
 **Headlines**: Use the equals sign = to create headlines. More equals signs create smaller headlines. **Headlines**: Use the equals sign = to create headlines. More equals signs create smaller headlines.
 +<code>
 ====== Large Heading ======  ====== Large Heading ====== 
  
Line 32: Line 36:
  
 ==== Small Heading ==== ==== Small Heading ====
 +</code>
  
 **Lists**: **Lists**:
Line 43: Line 48:
 **Internal Links**: To link to another page within the wiki, use double square brackets. **Internal Links**: To link to another page within the wiki, use double square brackets.
  
-[[page_name]] will create a link to "page_name".+''%%[[page_name]]%%'' will create a link to "page_name".
  
-[[page_name|link text]] will create a link to "page_name" with the text "link text".+''%%[[page_name|link text]]%%'' will create a link to "page_name" with the text "link text".
  
 **External Links**: To link to an external website, simply paste the full URL. **External Links**: To link to an external website, simply paste the full URL.
  
-http://www.example.com will create a link to that URL.+''%%http://www.example.com%%'' will create a link to that URL.
  
-[[http://www.example.com|link text]] will create a link with custom text.+''%%[[http://www.example.com|link text]]%%'' will create a link with custom text.
  
 ==== Adding Images ==== ==== Adding Images ====
Line 59: Line 64:
 **Embed the image**: To embed an image into a page, use double curly braces. **Embed the image**: To embed an image into a page, use double curly braces.
  
-{{image.jpg}}+''%%{{image.jpg}}%%''
  
 ==== Saving Your Work ==== ==== Saving Your Work ====
Line 73: Line 78:
 **Upload the PDF**: First, use the "Media Manager" to upload your PDF file to the wiki. **Upload the PDF**: First, use the "Media Manager" to upload your PDF file to the wiki.
  
-**Embed the File**: To embed the uploaded PDF, insert the following syntax into your page, replacing your_file.pdf with the name of your uploaded file: {{pdfjs>your_file.pdf}}+**Embed the File**: To embed the uploaded PDF, insert the following syntax into your page, replacing your_file.pdf with the name of your uploaded file: ''%%{{pdfjs>your_file.pdf}}%%''
  
 This will display the PDF with a default width of 100% and a height of 300px. This will display the PDF with a default width of 100% and a height of 300px.
Line 81: Line 86:
 You can customize the height and width of the PDF viewer. You can customize the height and width of the PDF viewer.
  
-To set only the height (e.g., to 500 pixels): {{pdfjs>your_file.pdf|500}}+To set only the height (e.g., to 500 pixels): ''%%{{pdfjs>your_file.pdf|500}}%%''
  
-To set both width and height (e.g., 800 pixels wide by 600 pixels high): {{pdfjs>your_file.pdf|800,600}}+To set both width and height (e.g., 800 pixels wide by 600 pixels high): ''%%{{pdfjs>your_file.pdf|800,600}}%%''
  
 ==== Adding Content from Microsoft Word ==== ==== Adding Content from Microsoft Word ====