amoeba commented on issue #576:
URL: https://github.com/apache/arrow-site/issues/576#issuecomment-2597255758
For some reason, the docs generated docs had a newline and the script we use
to update the docs doesn't work. The generate docs look like this,
```
<script>
DOCUMENTATION_OPTIONS.theme_version = '0.16.1';
DOCUMENTATION_OPTIONS.theme_switcher_json_url =
'/docs/_static/versions.json';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '';
DOCUMENTATION_OPTIONS.show_version_warning_banner =
true;
</script>
```
and we update the `show_version_warning_banner` value with this sed command,
```
sed -i.bak \
-e "s/DOCUMENTATION_OPTIONS.show_version_warning_banner =
true/DOCUMENTATION_OPTIONS.show_version_warning_banner = false/g" \
{} \;
```
So we'll need to fix the docs here and also figure out why the generate docs
have a newline now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]