Master Version Not Publishing #260
-
Hello! I'm having issues publishing my essay. All my updates have been committed to the master branch of my essays Git repo. The stage version appears correctly. And I do not get any error messages when running Quire preview; the essay appears correctly. However the master link for the essay throws a "page not found" error. This may very well be an issue with my hosting environment, but first I wanted to make sure I've exhausted all troubleshooting in Quire to rule that out as the issue. Any suggestions are welcome! Thanks! Alex |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @aebancroft! I looked at the Netlify deploy logs and there's an error in another essay file that I think it breaking the build. If you look at https://github.com/thegetty/museum-essays/blob/master/content/photographs/awells-vroman.md you'll see it at the top in page YAML. ---
weight: 200
type: entry
draft: false
<<<<<<< HEAD
title: "The Photographic Work of Adam Clark A.C. Vroman"
=======
title: "The Photographic Work of Adam Clark \"A.C.\" Vroman"
>>>>>>> dbade7e0d52559736503261230c5c6b86458c888
object:
- id: 46430
pub_date: 2021-12-01
language: en
contributor:
- id: adwells
--- That duplicate ---
weight: 200
type: entry
draft: false
title: "The Photographic Work of Adam Clark \"A.C.\" Vroman"
object:
- id: 46430
pub_date: 2021-12-01
language: en
contributor:
- id: adwells
--- FYI, when you need quotes in a title like that, you can use the backslash to escape them as you did there, or you can use single quotes on the outer set: title: 'The Photographic Work of Adam Clark "A.C." Vroman' Or, you can use unicode curly quotes: title: "The Photographic Work of Adam Clark “A.C.” Vroman" |
Beta Was this translation helpful? Give feedback.
Hi @aebancroft! I looked at the Netlify deploy logs and there's an error in another essay file that I think it breaking the build. If you look at https://github.com/thegetty/museum-essays/blob/master/content/photographs/awells-vroman.md you'll see it at the top in page YAML.
That duplicate
title
and the other gobbledygook in there is from a merge conflict that happened somewhe…