Skip to content

Commit

Permalink
Keep head metadata as is in docs (#1311)
Browse files Browse the repository at this point in the history
We can just keep these head metadata as it is instead of replacing with
html comments.

It will display in a normal manner on GitHub.
  • Loading branch information
PragmaTwice authored Jan 5, 2024
1 parent a9057eb commit d299cf4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 16 deletions.
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

0 comments on commit d299cf4

Please sign in to comment.