-
Notifications
You must be signed in to change notification settings - Fork 658
feat: rewriting documentation to integrate to kotlinlang.org #3055
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
daniCsorbaJB
wants to merge
1
commit into
master
Choose a base branch
from
doc-restructuring-master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<buildprofiles> | ||
<variables> | ||
<enable-browser-edits>true</enable-browser-edits> | ||
<browser-edits-url>https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/</browser-edits-url> | ||
<allow-indexable-eaps>true</allow-indexable-eaps> | ||
</variables> | ||
<build-profile product="serialization"/> | ||
</buildprofiles> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<!DOCTYPE instance-profile SYSTEM "https://resources.jetbrains.com/writerside/1.0/product-profile.dtd"> | ||
<instance-profile id="serialization" name="Serialization" start-page="serialization.md"> | ||
<snippet id="serialization"> | ||
<toc-element topic="serialization.md" toc-title="Introduction"/> | ||
<toc-element toc-title="Get started"> | ||
<toc-element topic="serialization-get-started.md"/> | ||
<toc-element topic="serialization-serialize-builtin-types.md"/> | ||
<toc-element topic="serialization-customization-options.md"/> | ||
</toc-element> | ||
<toc-element toc-title="Configure JSON serialization"> | ||
<toc-element topic="configure-json-serialization.md" toc-title="Overview"/> | ||
<toc-element topic="serialization-json-configuration.md"/> | ||
<toc-element topic="serialization-json-elements.md"/> | ||
<toc-element topic="serialization-transform-json.md" toc-title="JSON transformation"/> | ||
</toc-element> | ||
<toc-element topic="serialization-polymorphism.md"/> | ||
<toc-element toc-title="Custom serializers"> | ||
<toc-element topic="create-custom-serializers.md"/> | ||
<toc-element topic="third-party-classes.md"/> | ||
</toc-element> | ||
<toc-element topic="alternative-serialization-formats.md" toc-title="Alternative serialization formats"/> | ||
</snippet> | ||
</instance-profile> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE vars SYSTEM "https://resources.jetbrains.com/stardust/vars.dtd"> | ||
|
||
<!-- Variables to be used throughout the documentation --> | ||
<vars> | ||
|
||
</vars> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<!DOCTYPE ihp SYSTEM "https://resources.jetbrains.com/writerside/1.0/ihp.dtd"> | ||
|
||
<ihp version="2.0"> | ||
<module name="serialization"/> | ||
<topics dir="topics"/> | ||
<images dir="images"/> | ||
<vars src="v.list"/> <!-- be careful with renaming the file, might lead to build errors / bugs --> | ||
<settings> | ||
<!-- ToC within topics, usually displayed on the left, depth is measured by header levels --> | ||
<default-property element-name="chapter" property-name="show-structure-depth" value="2"/> | ||
<wrs-supernova use-version="242.21870"/> | ||
</settings> | ||
<instance src="serialization.tree"/> | ||
</ihp> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these elements are not directly related to the content of this PR; are you sure you will be able to keep them in sync during other PR's review process?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It shouldn't be a problem, it's just required for the WS preview/at the end for the library. At this point, it just serves as a skeleton, but we can modify it as we go with other PRs as needed.