Spaces:
Sleeping
Sleeping
File size: 382 Bytes
4c139a8 81fe4e7 4c139a8 |
1 2 3 4 5 6 7 8 9 10 11 |
def bluebook_citation(result):
"""
Formats a public FOIA document reference.
This is citation formatting ONLY, not legal advice.
"""
title = result.get("title", "Untitled Document")
agency = result.get("agency", "U.S. Government")
date = result.get("date", "n.d.")
url = result.get("url", "")
return f"{title}, {agency} (released {date}), {url}" |