Skip to content
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

Keep head metadata as is in docs #1311

Merged
merged 1 commit into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Replace Front Matter
run: |
sed -i 's/<!-- fury_frontmatter --/---/g' `grep fury_frontmatter -rl`
sed -i 's/-- fury_frontmatter -->/---/g' `grep fury_frontmatter -rl`
- name: Sync files
uses: BetaHuhn/repo-file-sync-action@v1
with:
Expand Down
5 changes: 3 additions & 2 deletions docs/guide/DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!-- fury_frontmatter --
---
title: Development
sidebar_position: 6
id: development
-- fury_frontmatter -->
---

# How to build to Fury

## Get the source code
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/graalvm_guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- fury_frontmatter --
---
title: GraalVM Guide
sidebar_position: 6
id: graalvm_guide
-- fury_frontmatter -->
---

# GraalVM Native Image
GraalVM `native image` can compile java code into native code ahead to build faster, smaller, leaner applications.
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/java_object_graph_guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- fury_frontmatter --
---
title: Java Object Graph Guide
sidebar_position: 0
id: java_object_graph_guide
-- fury_frontmatter -->
---

# Java object graph serialization

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/row_format_guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- fury_frontmatter --
---
title: Row Format Guide
sidebar_position: 1
id: row_format_guide
-- fury_frontmatter -->
---

## Row format protocol
### Java
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/scala_guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- fury_frontmatter --
---
title: Scala Serialization Guide
sidebar_position: 4
id: scala_guide
-- fury_frontmatter -->
---

# Scala serialization
Fury supports all scala object serialization:
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/xlang_object_graph_guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- fury_frontmatter --
---
title: Xlang Object Graph Guide
sidebar_position: 2
id: xlang_object_graph_guide
-- fury_frontmatter -->
---

## Cross-language object graph serialization

Expand Down
Loading