There is no blanket Christian duty to submit to wrongful authority; in fact, under certain circumstances, the Christian may even have an affirmative duty to resist the tyrant — even the tyrant who may claim to be a Christian himself. The Magdeburg Confession serves as a foundational document (arguably second only to Scripture) on the Doctrine of the Lesser Magistrate and Christian resistance to tyranny. For the Christian, the question is twofold:
It is incumbent on Christian men to consider these matters, for we have duties to those above us and to those below us (if any) in the social and political hierarchy. The Magdeburgers had to work through these issues while watching an imperial army make ready a siege that would eventually last more than a year and claim thousands of lives (mostly on the imperial side); we would do well to think through these matters now, while we yet enjoy relative peace.
None.
Coming soon?
Join the discussion on Telegram, visit the feedback form or comment below.
function updateTranscriptLink(audioSrc) { const episodeNumber = extractNumber(audioSrc); if (episodeNumber) { const transcriptLink = document.querySelector('a.transcript-link'); if (transcriptLink) { transcriptLink.setAttribute('href', `/transcripts/transcript-episode-${episodeNumber}/`); } else { console.error('Transcript link not found.'); } } else { console.error('Episode number could not be extracted. The audio source was: ' + audioSrc); } }
// Function to extract the number from the audio file name function extractNumber(src) { const match = src.match(/e(\d+)\.m4a/); return match ? match[1] : null; }
// Start waiting for the audio element to appear in the DOM
waitForElement('audio[src*="s.stone-choir.com"]', function(audioElement) {
const audioSrc = audioElement.getAttribute('src');
updateTranscriptLink(audioSrc);
});
// Inject the "Show Comments" button before the comments div $('#comments').before('
');
// Handle the button click event $('#show-comments').on('click', function() { $('#comments').toggle(); $(this).text(function(i, text){ return text === "Show Comments" ? "Hide Comments" : "Show Comments"; }); }); });