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

[skip ci] fix and expand file_device and file_extension documentation #721

Merged
merged 1 commit into from
Aug 23, 2024
Merged
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
14 changes: 12 additions & 2 deletions star/defaults/pgstar.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,24 @@

! file_device
! ~~~~~~~~~~~

! 'png' is Portable Network Graphics format
! can also use:
! 'ps' (in combination with file_extension = 'ps') for PostScript
! or:
! 'vcps' (in combination with file_extension = 'eps') for Encapsulated PostScript

! ::

file_device = 'png'

! file_extension
! ~~~~~~~~~~~~~~

! 'png' is Portable Network Graphics format; can also use 'pdf'
! Can use: 'png', 'ps', or 'eps' with the appropriate file_device

! ::

file_device = 'png'
file_extension = 'png'


Expand Down