Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
quasseldroid-docs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
quasseldroid-docs
Commits
5fe76a4f
Verified
Commit
5fe76a4f
authored
6 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Removed placeholder content
parent
7fc820da
No related branches found
No related tags found
No related merge requests found
Pipeline
#288
failed
6 years ago
Stage: build
Stage: test
Stage: production
Stage: performance
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/index.md
+1
-60
1 addition, 60 deletions
docs/index.md
with
1 addition
and
60 deletions
docs/index.md
+
1
−
60
View file @
5fe76a4f
...
@@ -3,63 +3,4 @@
...
@@ -3,63 +3,4 @@
Welcome to the Quasseldroid documentation!
Welcome to the Quasseldroid documentation!
!!! danger
!!! danger
The documentation is still being worked on, currently all content is placeholder content.
The documentation is still being worked on.
\ No newline at end of file
## Examples
### Text example
This is an example for a normal text.
### Code example
```
kotlin
package
de.kuschku.libquassel.util.irc
object
HostmaskHelper
{
fun
nick
(
mask
:
String
):
String
{
val
(
nick
,
_
,
_
)
=
split
(
mask
)
return
nick
}
fun
user
(
mask
:
String
):
String
{
val
(
_
,
user
,
_
)
=
split
(
mask
)
return
user
}
fun
host
(
mask
:
String
):
String
{
val
(
_
,
_
,
host
)
=
split
(
mask
)
return
host
}
fun
split
(
mask
:
String
):
Triple
<
String
,
String
,
String
>
{
val
userPartHostSplit
=
mask
.
split
(
"@"
,
limit
=
2
)
if
(
userPartHostSplit
.
size
<
2
)
return
Triple
(
mask
,
""
,
""
)
val
(
userPart
,
host
)
=
userPartHostSplit
val
nickUserSplit
=
userPart
.
split
(
'!'
,
limit
=
2
)
if
(
nickUserSplit
.
size
<
2
)
return
Triple
(
mask
,
""
,
host
)
val
(
nick
,
user
)
=
nickUserSplit
return
Triple
(
nick
,
user
,
host
)
}
}
```
### Inline Code Example
This is inline
`#!js var test=0;`
code highlighting.
### Formula Example
$$
Y =
\l
ambda f.(
\l
ambda x.f(x x)) (
\l
ambda x.f (x x))
$$
### Inline Formula Example
This is the y combinator $Y =
\l
ambda f.(
\l
ambda x.f(x x)) (
\l
ambda x.f (x x))$.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment