Skip to content

Commit

Permalink
fixed bug in markdown script
Browse files Browse the repository at this point in the history
  • Loading branch information
MarketDataApp committed Feb 18, 2024
1 parent 0214a46 commit 6e91a9f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .scripts/process_markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ def combine_files_into_mdx(file_paths):
# Use consistent logic for both /api/ and /sdk/
if "/sdk/" in url:
base_name = "go"
path_after_segment = url.split("/sdk/")[-1]
path_after_segment = url.split("/go/")[-1]
elif "/api/" in url:
base_name = "go"
path_after_segment = url.split("/api/")[-1]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[![License](https://img.shields.io/github/license/MarketDataApp/sdk-go.svg)](https://github.com/MarketDataApp/sdk-go/blob/master/LICENSE)
![SDK Version](https://img.shields.io/badge/version-1.0.0-blue.svg)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/MarketDataApp/sdk-go)
![Lines of Code](https://img.shields.io/badge/lines_of_code-8347-blue)
![Lines of Code](https://img.shields.io/badge/lines_of_code-8585-blue)

#### Connect With The Market Data Community

Expand Down
1 change: 0 additions & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
// 4. Check the rate limit in the client to keep track of your requests.
// 5. Check the in-memory logs to see the raw request and response details.
//
// #
// [Market Data Go Client]: https://www.marketdata.app/docs/sdk/go/client
package client

Expand Down

0 comments on commit 6e91a9f

Please sign in to comment.