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
start [2024/02/05 18:52] averyberrystart [2024/08/04 09:17] (current) averyberry
Line 1: Line 1:
-====== Welcome to the Gender Justice League Wiki! :) ====== +====== Washington State Trans Wiki ====== 
-**Washington State Trans Wiki** +
  
 This wiki is designed to be a repository for community-cultivated resources and information for TwoSpirit, Trans, & Gender Diverse people in Washington State and beyond. This wiki is designed to be a repository for community-cultivated resources and information for TwoSpirit, Trans, & Gender Diverse people in Washington State and beyond.
-----+
 [[wiki:DV/SA Resources|Community DV/SA Resources]] [[wiki:DV/SA Resources|Community DV/SA Resources]]
  
Line 14: Line 13:
 [[wiki:Health Care|Health Care]] [[wiki:Health Care|Health Care]]
  
-The rest of this page is a placeholder for GJL to use as a reference and demonstration on the basics on how to use dokuwiki. For a more comprehensive how-to, you can also take a look at the manual [[https://www.dokuwiki.org/manual|here]], or some tutorial screencasts made by the (dokuwiki) community [[https://www.dokuwiki.org/screencast|here]]. +[[wiki:Gender Affirming Care|Gender Affirming Care]] 
-To see how this page is formatted using dokuwiki's syntax, click on the edit page link to the right (note that only users with appropriate permissions will be able to see the edit page link. Right now that is Danni, Kai, and myself ).  +===== New To Dokuwiki? Interested in Contributing Content? ===== 
-===== Sectioning and Headlines ===== +Check out our [[wiki:gjl_quick_start|Quick Start]] page for a crash course in creating and editing content for our (doku)wiki. There is also the official [[wiki:syntax|dokuwiki syntax primer]].
-A dokuwiki page is divided into sections by the headlines on a page. If there are more than 3 headlines a Table of Contents will be generated automatically. +
-Headlines are created by wrapping text in progressive '=' signs, like so:  +
-  ==== Headline 1 ==== +
-will look like this: +
-==== Headline 1 ==== +
-and so on: +
-  === Headline 2=== +
-=== Headline 2 === +
-  == Headline 3 == +
-== Headline 3 == +
-===== Formatting Text ===== +
-DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. +
-and you can **__//''combine''//__** all these.  The formatting syntax to achieve this looks like so: +
-  DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. +
-  Of course you can **__//''combine''//__** all these.  +
-Dokuwiki also supports <sub>subscript</sub> and <sup>superscript</sup>, like so: +
-  Dokuwiki also supports <sub>subscript</sub> and <sup>superscript</sup> +
-===== Tables and Lists ===== +
-To create an unordered list (bulleted) you indent the text with 2 spaces and then a '*' like so: +
-==== Unordered list ==== +
-<code> +
-  * First item +
-  * Second Item +
-      * Sub item +
-  * Third item +
-</code> +
-becomes: +
-  * First item +
-  * Second Item +
-      * Sub item +
-  * Third item +
-To make an ordered list, you do the same thing but use a '-' instead of a '*' +
-==== Ordered List ==== +
-<code> +
-  - First item +
-  - Second item +
-    - Sub item +
-  - Third Item +
-</code> +
-becomes: +
-  - First item +
-  - Second item +
-    - Sub item +
-  - Third Item +
-==== Tables ==== +
-To create tables you begin a line with either ''^'' for headings or ''|'' for rows. Each new ''^'' or ''|'' character creates new column. So, for example take a look at the following: +
-<code> +
-^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +
-| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +
-| Row 2 Col 1    | Row 2 Col 2     | Row 2 Col 3        | +
-| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        | +
-</code> +
-This will result in a table that looks like so when published (saved): +
-^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +
-| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +
-| Row 2 Col 1    | Row 2 Col 2     | Row 2 Col 3        | +
-| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        | +
-If you want to connect cells horizontally (column span), leave the cell empty (not even whitespace) like so (but make sure to maintain the same number of cell separators per line or the table will break): +
-<code> +
-^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +
-| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +
-| Row 2 Col 1    | Row 2 Col 2 and Row 2 Col 3 are now merged || +
-| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        | +
-</code> +
-results in: +
-^ Heading 1      ^ Heading 2       ^ Heading 3          ^ +
-| Row 1 Col 1    | Row 1 Col 2     | Row 1 Col 3        | +
-| Row 2 Col 1    | Row 2 Col 2 and Row 2 Col 3 are now merged || +
-| Row 3 Col 1    | Row 3 Col 2     | Row 3 Col 3        | +
-Vertical span, or row spans, can be accomplished by filling the cell with ':::' like so: +
-<code> +
-^ Heading 1      ^ Heading 2                  ^ Heading 3                          ^ +
-| Row 1 Col 1    | this cell spans vertically | Row 1 Col 3                    | +
-| Row 2 Col 1    | :::                                    | Row 2 Col 3                    | +
-| Row 3 Col 1    | :::                                    | Row 2 Col 3                    | +
-</code> +
-looks like: +
-^ Heading 1      ^ Heading 2                  ^ Heading 3                          ^ +
-| Row 1 Col 1    | this cell spans vertically | Row 1 Col 3                    | +
-| Row 2 Col 1    | :::                                    | Row 2 Col 3                    | +
-| Row 3 Col 1    | :::                                    | Row 2 Col 3                    | +
-You can also have vertical headings (headings on rowslike so: +
-<code> +
-|                      ^ Heading 1            ^ Heading 2          ^ +
-^ Heading 3    | Row 1 Col 2          | Row 1 Col 3        | +
-^ Heading 4    | Row 1 Col 2          |                            | +
-^ Heading 5    | Row 2 Col 2          | Row 2 Col 3        | +
-</code> +
-Will look like this: +
-|                      ^ Heading 1            ^ Heading 2          ^ +
-^ Heading 3    | Row 1 Col 2          | Row 1 Col 3        | +
-^ Heading 4    | Row 1 Col 2          |                            | +
-^ Heading 5    | Row 2 Col 2          | Row 2 Col 3        | +
-Note that Row 2 Col 3 is empty but since it has whitespace, the columns are not merged as in the previous example.  This way you can denote an empty field / cell. +
-=== Table Alignment === +
-To align the content in cells use at least 2 spaces on the left, right, or both sides of the content in the cell like so: +
-<code> +
-^           Table with alignment           ^^^ +
-| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | +
-|         right|    center    |left          | +
-|left          |         right|    center    | +
-| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | +
-</code> +
- +
-becomes: +
- +
-^           Table with alignment           ^^^ +
-|         right|    center    |left          | +
-|left          |         right|    center    | +
-| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | +
-===== Image, Video, and Audio Files ===== +
-Dokuwiki allows embedding image, video, and audio files on pages. To do this, you first upload your media file using the Media Manager (covered in a screencast [[https://www.youtube.com/watch?v=DnVsJtDOUlk|here]]). Once your file is uploaded, you then use the dokuwiki embed syntax to embed the file on the page.  For example, I already have uploaded an image of the GJL logo, and now I use the following syntax to embed it on this page like so: +
-<code> +
-{{wiki:gjl-star.png}} +
-</code> +
-will then look like so: +
- +
-{{wiki:gjl-star.png}} +
- +
-=== Alignment === +
-To align an embedded media file, add whitespace to the beginning, end, or both sides of the reference to the file in media manager ((A note on namespaces. colons are used like in this example to denote //namespaces// namespaces are how files and pages are structured in dokuwiki. For more on namespaces take a look [[https://www.dokuwiki.org/namespaces|here]])) (the wiki:gjl-star.png part). +
-So this: +
-<code> +
-{{wiki:gjl-star.png  }} +
-{{  wiki:gjl-star.png}} +
-{{  wiki:gjl-star.png  }} +
-</code> +
- +
-Will look like this when published: +
- +
-{{wiki:gjl-star.png  }} +
-{{  wiki:gjl-star.png}} +
-{{  wiki:gjl-star.png  }} +
- +
-And here's a video example, aligned to the center of the page :+
  
-<code> 
-{{ samplevideo_1280x720_5mb.mp4  }} 
-</code> 
-{{ samplevideo_1280x720_5mb.mp4  }} 
-\\  
-\\  
-Note that in this example, there is no colon before the filename. That is because when I uploaded this sample file to with the Media Manager I uploaded it to the //**root**// namespace (see the footnote on the bottom of the page about namespaces), whereas with the logo, I uploaded it to the //wiki// namespace. If I had uploaded the video to the wiki namespace like the logo, the embed syntax would look like this instead: 
-<code> 
-{{ wiki:samplevideo_1280x720_5mb.mp4  }} 
-</code> 
-===== Creating (and Deleting) Pages ===== 
-To create a page, just add a new link to a page. If that page does not exist, dokuwiki will automatically create the page. The syntax to create a link looks like so: 
-<code> 
-[[namespace:page|link text]] 
-</code> 
-If you leave the namespace out, the page will be created in the //**root**// namespace 
-To delete a page, navigate to the page you would like to delete, edit the page, and remove all of the content and then press save. Super easy! 
-and finally, to add a comments section to any page add the following : 
-<code> 
-~~DISCUSSION~~ 
-</code> 
 ~~DISCUSSION~~ ~~DISCUSSION~~