-
Notifications
You must be signed in to change notification settings - Fork 7
WIP: Add documentation site with Material for MkDocs #204
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
EiffL
wants to merge
4
commits into
main
Choose a base branch
from
documentation
base: main
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
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c1109e7
docs: add Material for MkDocs documentation site
EiffL 36666f8
docs: trim verbosity and redundancy across documentation pages
EiffL 9d718f8
docs: remove architecture section and expand notable differences
EiffL 5b2c943
Merge branch 'main' into documentation
beckermr 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,35 @@ | ||
| name: Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| concurrency: | ||
| group: docs-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| docs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.x" | ||
|
|
||
| - name: Install dependencies | ||
| run: pip install -e ".[docs]" | ||
|
|
||
| - name: Build documentation | ||
| if: github.event_name == 'pull_request' | ||
| run: mkdocs build --strict | ||
|
|
||
| - name: Deploy documentation | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| run: mkdocs gh-deploy --force |
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,128 @@ | ||
| # API Coverage | ||
|
|
||
| JAX-GalSim has implemented **22.5%** of the GalSim API. The project focuses on | ||
| the most commonly used profiles and operations, with coverage expanding over time. | ||
|
|
||
| ## Supported APIs | ||
|
|
||
| ??? note "Click to expand the full list of implemented APIs" | ||
|
|
||
| - `galsim.Add` | ||
| - `galsim.AffineTransform` | ||
| - `galsim.Angle` | ||
| - `galsim.AngleUnit` | ||
| - `galsim.BaseDeviate` | ||
| - `galsim.BaseNoise` | ||
| - `galsim.BaseWCS` | ||
| - `galsim.BinomialDeviate` | ||
| - `galsim.Bounds` | ||
| - `galsim.BoundsD` | ||
| - `galsim.BoundsI` | ||
| - `galsim.Box` | ||
| - `galsim.CCDNoise` | ||
| - `galsim.CelestialCoord` | ||
| - `galsim.Chi2Deviate` | ||
| - `galsim.Convolution` | ||
| - `galsim.Convolve` | ||
| - `galsim.Cubic` | ||
| - `galsim.Deconvolution` | ||
| - `galsim.Deconvolve` | ||
| - `galsim.Delta` | ||
| - `galsim.DeltaFunction` | ||
| - `galsim.DeviateNoise` | ||
| - `galsim.Exponential` | ||
| - `galsim.FitsHeader` | ||
| - `galsim.FitsWCS` | ||
| - `galsim.GSFitsWCS` | ||
| - `galsim.GSObject` | ||
| - `galsim.GSParams` | ||
| - `galsim.GalSimBoundsError` | ||
| - `galsim.GalSimConfigError` | ||
| - `galsim.GalSimConfigValueError` | ||
| - `galsim.GalSimDeprecationWarning` | ||
| - `galsim.GalSimError` | ||
| - `galsim.GalSimFFTSizeError` | ||
| - `galsim.GalSimHSMError` | ||
| - `galsim.GalSimImmutableError` | ||
| - `galsim.GalSimIncompatibleValuesError` | ||
| - `galsim.GalSimIndexError` | ||
| - `galsim.GalSimKeyError` | ||
| - `galsim.GalSimNotImplementedError` | ||
| - `galsim.GalSimRangeError` | ||
| - `galsim.GalSimSEDError` | ||
| - `galsim.GalSimUndefinedBoundsError` | ||
| - `galsim.GalSimValueError` | ||
| - `galsim.GalSimWarning` | ||
| - `galsim.GammaDeviate` | ||
| - `galsim.Gaussian` | ||
| - `galsim.GaussianDeviate` | ||
| - `galsim.GaussianNoise` | ||
| - `galsim.Image` | ||
| - `galsim.ImageCD` | ||
| - `galsim.ImageCF` | ||
| - `galsim.ImageD` | ||
| - `galsim.ImageF` | ||
| - `galsim.ImageI` | ||
| - `galsim.ImageS` | ||
| - `galsim.ImageUI` | ||
| - `galsim.ImageUS` | ||
| - `galsim.Interpolant` | ||
| - `galsim.InterpolatedImage` | ||
| - `galsim.JacobianWCS` | ||
| - `galsim.Lanczos` | ||
| - `galsim.Linear` | ||
| - `galsim.Moffat` | ||
| - `galsim.Nearest` | ||
| - `galsim.OffsetShearWCS` | ||
| - `galsim.OffsetWCS` | ||
| - `galsim.PhotonArray` | ||
| - `galsim.Pixel` | ||
| - `galsim.PixelScale` | ||
| - `galsim.PoissonDeviate` | ||
| - `galsim.PoissonNoise` | ||
| - `galsim.Position` | ||
| - `galsim.PositionD` | ||
| - `galsim.PositionI` | ||
| - `galsim.Quintic` | ||
| - `galsim.Sensor` | ||
| - `galsim.Shear` | ||
| - `galsim.ShearWCS` | ||
| - `galsim.SincInterpolant` | ||
| - `galsim.Spergel` | ||
| - `galsim.Sum` | ||
| - `galsim.TanWCS` | ||
| - `galsim.Transform` | ||
| - `galsim.Transformation` | ||
| - `galsim.UniformDeviate` | ||
| - `galsim.VariableGaussianNoise` | ||
| - `galsim.WeibullDeviate` | ||
| - `galsim.bessel.j0` | ||
| - `galsim.bessel.kv` | ||
| - `galsim.bessel.si` | ||
| - `galsim.fits.closeHDUList` | ||
| - `galsim.fits.readCube` | ||
| - `galsim.fits.readFile` | ||
| - `galsim.fits.readMulti` | ||
| - `galsim.fits.write` | ||
| - `galsim.fits.writeFile` | ||
| - `galsim.fitswcs.CelestialWCS` | ||
| - `galsim.integ.int1d` | ||
| - `galsim.noise.addNoise` | ||
| - `galsim.noise.addNoiseSNR` | ||
| - `galsim.random.permute` | ||
| - `galsim.utilities.g1g2_to_e1e2` | ||
| - `galsim.utilities.horner` | ||
| - `galsim.utilities.printoptions` | ||
| - `galsim.utilities.unweighted_moments` | ||
| - `galsim.utilities.unweighted_shape` | ||
| - `galsim.wcs.EuclideanWCS` | ||
| - `galsim.wcs.LocalWCS` | ||
| - `galsim.wcs.UniformWCS` | ||
|
|
||
| ## Updating Coverage | ||
|
|
||
| ```bash | ||
| python scripts/update_api_coverage.py | ||
| ``` | ||
|
|
||
| Compares GalSim's public API against `jax_galsim`'s implementations and updates the coverage percentage and list in `README.md`. | ||
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 @@ | ||
| # Convolution & Deconvolution | ||
|
|
||
| Convolve profiles together (e.g., galaxy with PSF) or deconvolve. | ||
|
|
||
| ::: jax_galsim.convolve.Convolution | ||
|
|
||
| ::: jax_galsim.convolve.Deconvolution |
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,5 @@ | ||
| # Sum (Add) | ||
|
|
||
| Add surface brightness profiles together. | ||
|
|
||
| ::: jax_galsim.sum.Sum |
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,5 @@ | ||
| # Transform & Transformation | ||
|
|
||
| Affine transformations of surface brightness profiles (shear, shift, rotation, flux scaling). | ||
|
|
||
| ::: jax_galsim.transform.Transformation |
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,5 @@ | ||
| # Errors & Warnings | ||
|
|
||
| Exception and warning classes for JAX-GalSim error handling. | ||
|
|
||
| ::: jax_galsim.errors |
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,5 @@ | ||
| # GSParams | ||
|
|
||
| Numerical configuration parameters controlling accuracy and performance trade-offs. | ||
|
|
||
| ::: jax_galsim.gsparams.GSParams |
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,5 @@ | ||
| # Utilities | ||
|
|
||
| General utility functions. | ||
|
|
||
| ::: jax_galsim.utilities |
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 @@ | ||
| # Angle & AngleUnit | ||
|
|
||
| Angle representation and unit conversion (radians, degrees, arcminutes, arcseconds, hours). | ||
|
|
||
| ::: jax_galsim.angle.Angle | ||
|
|
||
| ::: jax_galsim.angle.AngleUnit |
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 @@ | ||
| # Bounds | ||
|
|
||
| Rectangular bounding box types for real-valued (`BoundsD`) and integer (`BoundsI`) coordinates. | ||
|
|
||
| ::: jax_galsim.bounds.BoundsD | ||
|
|
||
| ::: jax_galsim.bounds.BoundsI |
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,5 @@ | ||
| # CelestialCoord | ||
|
|
||
| Celestial coordinate (RA, Dec) representation and operations. | ||
|
|
||
| ::: jax_galsim.celestial.CelestialCoord |
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 @@ | ||
| # Position | ||
|
|
||
| 2D position types for real-valued (`PositionD`) and integer (`PositionI`) coordinates. | ||
|
|
||
| ::: jax_galsim.position.PositionD | ||
|
|
||
| ::: jax_galsim.position.PositionI |
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,5 @@ | ||
| # Shear | ||
|
|
||
| Gravitational shear representation with multiple parametrizations (g1/g2, e1/e2, eta1/eta2). | ||
|
|
||
| ::: jax_galsim.shear.Shear |
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,5 @@ | ||
| # Core: Drawing | ||
|
|
||
| Internal drawing utilities for rendering profiles to pixel grids. | ||
|
|
||
| ::: jax_galsim.core.draw |
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,5 @@ | ||
| # Core: Interpolation | ||
|
|
||
| Internal interpolation utilities (Akima splines, coefficient computation). | ||
|
|
||
| ::: jax_galsim.core.interpolate |
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,5 @@ | ||
| # Core: Math | ||
|
|
||
| Gradient-safe mathematical utilities (`safe_sqrt`, etc.). | ||
|
|
||
| ::: jax_galsim.core.math |
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,5 @@ | ||
| # Core: Utilities | ||
|
|
||
| Core utilities: `@implements` decorator, `has_tracers()`, type casting helpers. | ||
|
|
||
| ::: jax_galsim.core.utils |
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,5 @@ | ||
| # Image | ||
|
|
||
| Immutable JAX array wrapper with WCS and bounds metadata. | ||
|
|
||
| ::: jax_galsim.image.Image |
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,17 @@ | ||
| # Interpolants | ||
|
|
||
| Interpolation kernels for image resampling. | ||
|
|
||
| ::: jax_galsim.interpolant.Interpolant | ||
|
|
||
| ::: jax_galsim.interpolant.Nearest | ||
|
|
||
| ::: jax_galsim.interpolant.SincInterpolant | ||
|
|
||
| ::: jax_galsim.interpolant.Linear | ||
|
|
||
| ::: jax_galsim.interpolant.Cubic | ||
|
|
||
| ::: jax_galsim.interpolant.Quintic | ||
|
|
||
| ::: jax_galsim.interpolant.Lanczos |
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,5 @@ | ||
| # InterpolatedImage | ||
|
|
||
| Surface brightness profile defined by interpolation over a given image. | ||
|
|
||
| ::: jax_galsim.interpolatedimage.InterpolatedImage |
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,5 @@ | ||
| # Bessel Functions | ||
|
|
||
| Bessel and related special functions. | ||
|
|
||
| ::: jax_galsim.bessel |
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,5 @@ | ||
| # Integration | ||
|
|
||
| Numerical integration utilities. | ||
|
|
||
| ::: jax_galsim.integ |
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 @@ | ||
| # Noise Models | ||
|
|
||
| Noise classes for adding realistic noise to images. | ||
|
|
||
| ::: jax_galsim.noise.BaseNoise | ||
|
|
||
| ::: jax_galsim.noise.GaussianNoise | ||
|
|
||
| ::: jax_galsim.noise.PoissonNoise | ||
|
|
||
| ::: jax_galsim.noise.CCDNoise | ||
|
|
||
| ::: jax_galsim.noise.DeviateNoise | ||
|
|
||
| ::: jax_galsim.noise.VariableGaussianNoise |
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,19 @@ | ||
| # Random Deviates | ||
|
|
||
| Random number generators. | ||
|
|
||
| ::: jax_galsim.random.BaseDeviate | ||
|
|
||
| ::: jax_galsim.random.UniformDeviate | ||
|
|
||
| ::: jax_galsim.random.GaussianDeviate | ||
|
|
||
| ::: jax_galsim.random.PoissonDeviate | ||
|
|
||
| ::: jax_galsim.random.Chi2Deviate | ||
|
|
||
| ::: jax_galsim.random.GammaDeviate | ||
|
|
||
| ::: jax_galsim.random.WeibullDeviate | ||
|
|
||
| ::: jax_galsim.random.BinomialDeviate |
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,5 @@ | ||
| # PhotonArray | ||
|
|
||
| Array of photon positions, fluxes, and other properties for photon shooting. | ||
|
|
||
| ::: jax_galsim.photon_array.PhotonArray |
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,5 @@ | ||
| # Sensor | ||
|
|
||
| Sensor model for converting photons to pixel counts. | ||
|
|
||
| ::: jax_galsim.sensor.Sensor |
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 @@ | ||
| # Box & Pixel | ||
|
|
||
| Box (uniform rectangular) and Pixel (unit-width box) surface brightness profiles. | ||
|
|
||
| ::: jax_galsim.box.Box | ||
|
|
||
| ::: jax_galsim.box.Pixel |
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,5 @@ | ||
| # DeltaFunction | ||
|
|
||
| Delta function (point source) surface brightness profile. | ||
|
|
||
| ::: jax_galsim.deltafunction.DeltaFunction |
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,5 @@ | ||
| # Exponential | ||
|
|
||
| Exponential surface brightness profile, commonly used for galaxy disk components. | ||
|
|
||
| ::: jax_galsim.exponential.Exponential |
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,5 @@ | ||
| # Gaussian | ||
|
|
||
| Circular or elliptical Gaussian surface brightness profile. | ||
|
|
||
| ::: jax_galsim.gaussian.Gaussian |
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,5 @@ | ||
| # GSObject | ||
|
|
||
| Base class for all surface brightness profiles. | ||
|
|
||
| ::: jax_galsim.gsobject.GSObject |
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,5 @@ | ||
| # Moffat | ||
|
|
||
| Moffat surface brightness profile, commonly used for PSF modeling. | ||
|
|
||
| ::: jax_galsim.moffat.Moffat |
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,5 @@ | ||
| # Spergel | ||
|
|
||
| Spergel surface brightness profile, a flexible model for galaxy light distributions. | ||
|
|
||
| ::: jax_galsim.spergel.Spergel |
Oops, something went wrong.
Oops, something went wrong.
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.
Is this AI slop or actual markdown.
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 it's actually syntax from the admonition plugin? https://squidfunk.github.io/mkdocs-material/reference/admonitions/#collapsible-blocks