Skip to content

Commit 72d772f

Browse files
committed
commit
1 parent c15c908 commit 72d772f

File tree

8 files changed

+128
-41
lines changed

8 files changed

+128
-41
lines changed

Writerside/c.list

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
<!DOCTYPE categories
33
SYSTEM "https://resources.jetbrains.com/writerside/1.0/categories.dtd">
44
<categories>
5-
<category id="add-res" name="Additional resources" order="1"/>
5+
<category id="additional" name="Additional resources" order="1"/>
6+
<category id="related" name="Related resources" order="2"/>
7+
<category id="other" name="Other resources" order="3"/>
68
</categories>

Writerside/cfg/buildprofiles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd">
33
<variables>
44
<primary-color>frozen</primary-color>
5-
<custom-favicons>favicon.ico</custom-favicons>
5+
<custom-favicons>logo_main.svg</custom-favicons>
66
<header-logo>logo_main.svg</header-logo>
77
<product-web-url>https://docsjava.github.io/overview.html</product-web-url>
88
<download-title>Contribute</download-title>

Writerside/cfg/glossary.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE terms SYSTEM "https://resources.jetbrains.com/writerside/1.0/glossary.dtd">
3+
<terms>
4+
<term name="GUI">Graphical User Interface</term>
5+
<term name="HTTP">Hypertext Transfer Protocol</term>
6+
<term name="tooltip">Tooltips show a definition when a user hovers over a term.</term>
7+
</terms>

Writerside/images/logo_aa.ico

182 KB
Binary file not shown.

Writerside/images/logo_main.svg

Lines changed: 28 additions & 33 deletions
Loading

Writerside/topics/Overview.md

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ You are welcome to join our
1919
Before you do, please read our [Code of conduct](https://plugins.jetbrains.com/plugin/20158-writerside/docs/writerside-code-of-conduct.html).
2020
We assume that you’ve read and acknowledged it before joining.
2121

22-
#### Feedback {collapsible="true"}
23-
24-
You can also always email
25-
: [opentry@outlook.com](mailto:writerside@jetbrains.com).
22+
> **Disclaimer**
23+
>
24+
> This is not official site of java. This content is displaying on this site only for learning purpose.
25+
>
26+
{style="warning"}
2627

2728
> **Note**
2829
>
@@ -32,11 +33,28 @@ You can also always email
3233
>
3334
{style="note"}
3435

36+
#### Feedback {collapsible="true"}
37+
38+
You can also always email
39+
: [opentry@outlook.com](mailto:writerside@jetbrains.com).
40+
41+
3542
<seealso>
36-
<category ref="add-res">
43+
<category ref="additional">
3744
<a href="https://www.java.com">Java website</a>
3845
<a href="https://docs.oracle.com/javase/tutorial">Java Tutorials</a>
3946
<a href="https://docs.oracle.com/en/java">Java Developer Guide</a>
4047
<a href="https://www.javaprogrammingforums.com">Java Forum</a>
41-
</category>
48+
</category>
49+
<category ref="related">
50+
<a href="https://www.java.com">Java website</a>
51+
<a href="https://docs.oracle.com/javase/tutorial">Java Tutorials</a>
52+
<a href="https://docs.oracle.com/en/java">Java Developer Guide</a>
53+
<a href="https://www.javaprogrammingforums.com">Java Forum</a>
54+
</category>
55+
<category ref="other">
56+
<a href="https://www.java.com">Java website</a>
57+
<a href="https://docs.oracle.com/javase/tutorial">Java Tutorials</a>
58+
<a href="https://docs.oracle.com/en/java">Java Developer Guide</a>
59+
<a href="https://www.javaprogrammingforums.com">Java Forum</a> </category>
4260
</seealso>

Writerside/topics/Reference.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,71 @@ Describe what each option is used for:
2929
-h, --help
3030
: Displays help.
3131

32+
33+
<tldr>
34+
<p>Shortcut: <shortcut>Ctrl+Space</shortcut></p>
35+
<p>Configure: <ui-path>Settings / Preferences | Editor | Code Completion</ui-path></p>
36+
</tldr>
37+
38+
HELLLLLLLLLLLLLLO
39+
40+
<p>Shortcut: <shortcut>Ctrl+Space</shortcut></p>
41+
<p>Configure: <ui-path>Settings / Preferences | Editor | Code Completion</ui-path></p>
42+
43+
<procedure title="Procedure's title" collapsible="true">
44+
<step>Step 1.</step>
45+
<step>Step 2.</step>
46+
</procedure>
47+
48+
```kotlin
49+
class Person(val name: String) {
50+
val children: MutableList<Person> = mutableListOf()
51+
52+
constructor(name: String, parent: Person) : this(name) {
53+
parent.children.add(this)
54+
}
55+
}
56+
```
57+
58+
{collapsible="true" collapsed-title="Person.kt"}
59+
60+
{collapsible="true"}
61+
Expanded by default
62+
{collapsible="true" default-state="expanded"}
63+
: This is the definition of the first term.
64+
65+
Collapsed by default
66+
{collapsible="true" default-state="collapsed"}
67+
: This is the definition of the second term.
68+
69+
<deflist style="narrow" sorted="desc">
70+
<def title="First Term">
71+
This is the definition of the first term.
72+
</def>
73+
<def title="Second Term">
74+
This is the definition of the second term.
75+
Send an <tooltip term="HTTP">HTTP</tooltip> request.
76+
</def>
77+
</deflist>
78+
79+
WOWOWOWOWOWO
80+
81+
<code-block lang="tex">
82+
\begin{equation}
83+
x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
84+
\end{equation}
85+
</code-block>
86+
87+
![Getting started](apple-touch-icon.png)
88+
89+
<video src="https://youtu.be/BeJu9bMPLGU"/>
90+
91+
To output a line on the screen use
92+
`echo "Hello world!"`.
93+
94+
To output a line on the screen use
95+
<code>echo "Hello world!"</code>.
96+
3297
<seealso>
3398
<!--Provide links to related how-to guides, overviews, and tutorials.-->
3499
</seealso>

webHelpHI2-all.zip

-16.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy