Skip to content

Commit d14ed3a

Browse files
author
James Brundage
committed
release: Neocities 0.1 ( Fixes #1 )
Updating inner links
2 parents 9224f3c + a0f0016 commit d14ed3a

File tree

7 files changed

+101
-1
lines changed

7 files changed

+101
-1
lines changed

docs/README.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
1-
# Neocities
1+
## Neocities
2+
23
Manage Neocities with PowerShell
4+
5+
[https://neocities.org](Neocities) is a wonderful site for free personal webpages.
6+
7+
It's bringing back the ethos of old internet: one of the most popular free hosting services of the 90s was [geocities](https://en.wikipedia.org/wiki/GeoCities).
8+
9+
## The Neocities Module
10+
11+
Neocities is also the name a PowerShell module to manage Neocities (no official relation).
12+
13+
The Neocities module PowerShell is built atop the [neocities api](https://neocities.org/api).
14+
15+
### Installing and Importing
16+
17+
You can install the Neocities module by using the [PowerShell Gallery](https://powershellgallery.com)
18+
19+
~~~PowerShell
20+
Install-Module Neocities
21+
~~~
22+
23+
Once installed, you can import it with:
24+
25+
~~~PowerShell
26+
Import-Module Neocities -PassThru
27+
~~~
28+
29+
### Neocities Commands
30+
31+
* [Get-Neocities](Get-Neocities.md) gets neocities content
32+
* [Set-Neocities](Set-Neocities.md) sets neocities content
33+
* [Remove-Neocities](Remove-Neocities.md) removes neocities content
34+
* [Connect-Neocities](Connect-Neocities.md) connects with a credential and gives you an access token

docs/neocities/file/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## neocities.file
2+
3+
4+
### Script Properties
5+
6+
7+
* [get_CreatedAt](get_CreatedAt.md)
8+
* [get_UpdatedAt](get_UpdatedAt.md)

docs/neocities/file/get_CreatedAt.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
get_CreatedAt
2+
-------------
3+
4+
### Synopsis
5+
Gets the creation time
6+
7+
---
8+
9+
### Description
10+
11+
Gets the creation time, as a `[DateTime]` object.
12+
13+
---

docs/neocities/file/get_UpdatedAt.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
get_UpdatedAt
2+
-------------
3+
4+
### Synopsis
5+
Gets the last update time
6+
7+
---
8+
9+
### Description
10+
11+
Gets the last update time, as a `[DateTime]` object.
12+
13+
---

docs/neocities/info/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## neocities.info
2+
3+
4+
### Script Properties
5+
6+
7+
* [get_CreatedAt](get_CreatedAt.md)
8+
* [get_UpdatedAt](get_UpdatedAt.md)

docs/neocities/info/get_CreatedAt.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
get_CreatedAt
2+
-------------
3+
4+
### Synopsis
5+
Gets the creation time
6+
7+
---
8+
9+
### Description
10+
11+
Gets the creation time, as a `[DateTime]` object.
12+
13+
---

docs/neocities/info/get_UpdatedAt.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
get_UpdatedAt
2+
-------------
3+
4+
### Synopsis
5+
Gets the last update time
6+
7+
---
8+
9+
### Description
10+
11+
Gets the last update time, as a `[DateTime]` object.
12+
13+
---

0 commit comments

Comments
 (0)